flake: move usages of with to smallest scopes

This commit is contained in:
Jacob Birkett 2024-02-01 23:46:25 -07:00
parent fabe645c8b
commit 9fb310f51e

View file

@ -20,13 +20,12 @@
in
fn system pkgs);
in {
packages = eachSystem (_: pkgs:
with pkgs; {
default = stdenv.mkDerivation {
packages = eachSystem (_: pkgs: {
default = pkgs.stdenv.mkDerivation {
name = "monolisa-nerdfont-patch";
src = ./.;
nativeBuildInputs = [makeWrapper];
buildInputs = [fontforge python3];
nativeBuildInputs = with pkgs; [makeWrapper];
buildInputs = with pkgs; [fontforge python3];
unpackPhase = ":";
buildPhase = ":";
installPhase = ''
@ -38,14 +37,15 @@
'';
postFixup = ''
wrapProgram $out/bin/monolisa-nerdfont-patch \
--set PATH ${lib.makeBinPath [fontforge]}
--set PATH ${lib.makeBinPath (with pkgs; [fontforge])}
'';
};
});
devShells = eachSystem (_: pkgs:
with pkgs; {
default = mkShell {buildInputs = [fontforge python3 pre-commit];};
devShells = eachSystem (_: pkgs: {
default = pkgs.mkShell {
buildInputs = with pkgs; [fontforge python3 pre-commit];
};
});
formatter = eachSystem (system: _: alejandra.packages.${system}.default);