diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-05 23:39:31 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-05 23:39:31 +0100 |
commit | 32c5d56030673c88a408d505d029a7ed62e0bcb4 (patch) | |
tree | 6213510afb0274ee687b2f5960af7032fe2d7612 /pkgs | |
parent | 5774493677ba2c6a3a007c562d48d5f1ed3682fe (diff) |
update recipes
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index cd005b9..1aeb374 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,21 +1,27 @@ -pkgs: super: { - eth = { - recipesEthMoe = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; } ) {}; +let + recipes = builtins.fetchGit { + url = "https://github.com/ethulhu/recipes.eth.moe"; + rev = "9c370bf0cd6a06bbcfa17e3c1f42f6ac6f92ffdb"; + }; +in + pkgs: super: { + eth = { + recipes = pkgs.callPackage recipes {}; - dwm = pkgs.callPackage ./dwm {}; + dwm = pkgs.callPackage ./dwm {}; - catbus-lifx = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-lifx"; } ) {}; - catbus-snapcast = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-snapcast"; } ) {}; - catbus-web-ui = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-web-ui"; } ) {}; + catbus-lifx = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-lifx"; } ) {}; + catbus-snapcast = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-snapcast"; } ) {}; + catbus-web-ui = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/catbus-web-ui"; } ) {}; - helix = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/helix"; rev = "eb0335d0d1810187ea054c5960e11bd2e90f771b"; } ) {}; + helix = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/helix"; rev = "eb0335d0d1810187ea054c5960e11bd2e90f771b"; } ) {}; - dlnatoad = pkgs.callPackage ./dlnatoad {}; + dlnatoad = pkgs.callPackage ./dlnatoad {}; - libnpupnp = pkgs.callPackage ./libnpupnp { }; - libupnpp = pkgs.callPackage ./libupnpp { }; - upmpdcli = pkgs.callPackage ./upmpdcli { }; + libnpupnp = pkgs.callPackage ./libnpupnp { }; + libupnpp = pkgs.callPackage ./libupnpp { }; + upmpdcli = pkgs.callPackage ./upmpdcli { }; - reuse = pkgs.callPackage /home/eth/src/nixpkgs/pkgs/tools/package-management/reuse {}; - }; -} + reuse = pkgs.callPackage /home/eth/src/nixpkgs/pkgs/tools/package-management/reuse {}; + }; + } |