update dependencies

This commit is contained in:
Denis Knauf 2023-07-10 23:45:11 +02:00
parent d0762ed4c6
commit bbb05afe86
2 changed files with 4 additions and 3 deletions

View file

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1686926720, "lastModified": 1688982920,
"narHash": "sha256-S49KAii1WiYGAYza+ZJR8Nem142YJ4Nkt4gMvZiovS0=", "narHash": "sha256-FN1RT/FG0V+oImd3LDAWXo+POc2M8ov0knL/RlEQ67Y=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b1bdd38ad9c3b67c25101b87906f6cc3b628317d", "rev": "5e5ae660accca939e8995de98db5449c21cf7119",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -12,6 +12,7 @@
lib = forAllSystems ({pkgs}: lib = forAllSystems ({pkgs}:
with pkgs; with pkgs;
let let
sfnt2woff-zopfli = callPackage ./sfnt2woff-zopfli.nix {};
fetchfont = callPackage ./fetchfont.nix { pkgs = pkgs // { inherit sfnt2woff-zopfli; }; }; fetchfont = callPackage ./fetchfont.nix { pkgs = pkgs // { inherit sfnt2woff-zopfli; }; };
in in
{ inherit fetchfont; } { inherit fetchfont; }