diff options
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r-- | pkgs/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 5e0d2b8..af5e4f1 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -2,6 +2,8 @@ pkgs: super: { eth = { recipesEthMoe = pkgs.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; } ) {}; + 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"; } ) {}; @@ -11,5 +13,7 @@ pkgs: super: { libnpupnp = pkgs.callPackage ./libnpupnp { }; libupnpp = pkgs.callPackage ./libupnpp { }; upmpdcli = pkgs.callPackage ./upmpdcli { }; + + reuse = pkgs.callPackage /home/eth/src/nixpkgs/pkgs/tools/package-management/reuse {}; }; } |