mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-12 18:03:14 -06:00
29 lines
596 B
Nix
29 lines
596 B
Nix
|
{
|
||
|
description = "brain";
|
||
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
|
||
|
outputs = inputs @ {
|
||
|
self,
|
||
|
nixpkgs,
|
||
|
}: let
|
||
|
inherit (nixpkgs.lib) genAttrs;
|
||
|
forAllSystems = f:
|
||
|
genAttrs
|
||
|
["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]
|
||
|
(system: f nixpkgs.legacyPackages.${system});
|
||
|
in {
|
||
|
devShells = forAllSystems (
|
||
|
pkgs:
|
||
|
with pkgs; {
|
||
|
default = mkShell {
|
||
|
buildInputs = [
|
||
|
fontforge
|
||
|
python3
|
||
|
pre-commit
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
};
|
||
|
}
|