defaultPackage defined (equales packages.*.default)
This commit is contained in:
parent
ca3d109ea2
commit
d1d9d39f45
14
flake.nix
14
flake.nix
|
@ -16,11 +16,21 @@
|
|||
in
|
||||
{ inherit fetchfont; }
|
||||
);
|
||||
packages = forAllSystems ({pkgs}:
|
||||
defaultPackage = forAllSystems ({pkgs}:
|
||||
with pkgs;
|
||||
let
|
||||
fetchfont = callPackage ./fetchfont.nix { pkgs = pkgs // { inherit sfnt2woff-zopfli; }; };
|
||||
sfnt2woff-zopfli = callPackage ./sfnt2woff-zopfli.nix {};
|
||||
fetchfont = callPackage ./fetchfont.nix { pkgs = pkgs // { inherit sfnt2woff-zopfli; }; };
|
||||
fonts = callPackage ./fonts.nix { fetchfont = fetchfont; };
|
||||
default = callPackage ./collection.nix { fonts = fonts; };
|
||||
in
|
||||
default
|
||||
);
|
||||
packages = forAllSystems ({pkgs}:
|
||||
with pkgs;
|
||||
let
|
||||
sfnt2woff-zopfli = callPackage ./sfnt2woff-zopfli.nix {};
|
||||
fetchfont = callPackage ./fetchfont.nix { pkgs = pkgs // { inherit sfnt2woff-zopfli; }; };
|
||||
fonts = callPackage ./fonts.nix { fetchfont = fetchfont; };
|
||||
default = callPackage ./collection.nix { fonts = fonts; };
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue