lib.fetchfont now with system: lib.${system}.fetchfont

master
Denis Knauf 2023-06-20 15:14:02 +02:00
parent 17bb7663ad
commit ca3d109ea2
1 changed files with 7 additions and 3 deletions

View File

@ -9,9 +9,13 @@
pkgs = import nixpkgs { inherit system; };
}));
in rec {
#lib = {
# fetchfont = fetchfont;
#};
lib = forAllSystems ({pkgs}:
with pkgs;
let
fetchfont = callPackage ./fetchfont.nix { pkgs = pkgs // { inherit sfnt2woff-zopfli; }; };
in
{ inherit fetchfont; }
);
packages = forAllSystems ({pkgs}:
with pkgs;
let