bins/flake: fix gen-patches calls

This commit is contained in:
Aaron Bieber 2023-06-30 07:48:39 -06:00
parent 541dda9262
commit 3f6df64a95
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,7 @@ let
inherit gosignify; inherit gosignify;
inherit (pkgs) curl; inherit (pkgs) curl;
}); });
genPatches = import ./gen-patches.nix { inherit pkgs; }; genPatches = pkgs.callPackage ./gen-patches.nix { };
in { in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View File

@ -256,6 +256,8 @@
kurinto = spkgs.callPackage ./pkgs/kurinto.nix { }; kurinto = spkgs.callPackage ./pkgs/kurinto.nix { };
mcchunkie = spkgs.callPackage ./pkgs/mcchunkie.nix { inherit spkgs; }; mcchunkie = spkgs.callPackage ./pkgs/mcchunkie.nix { inherit spkgs; };
yaegi = spkgs.callPackage ./pkgs/yaegi.nix { inherit spkgs; }; yaegi = spkgs.callPackage ./pkgs/yaegi.nix { inherit spkgs; };
gen-patches =
spkgs.callPackage ./bins/gen-patches.nix { inherit spkgs; };
yarr = spkgs.callPackage ./pkgs/yarr.nix { yarr = spkgs.callPackage ./pkgs/yarr.nix {
inherit spkgs; inherit spkgs;
isUnstable = true; isUnstable = true;