diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-20 00:33:05 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-20 00:33:05 +0100 |
commit | 9a99413994d3468f65bc60f954046d6da2dfd80f (patch) | |
tree | a7a0f714e5f8df0ac824827cb7890e83477e4946 /pkgs | |
parent | 560988ea6f96ffb0ee534facba168abd8f999da3 (diff) |
add pkgs.eth.catbus-wakeonlan
also tidy some other package definitions
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 2f57793..45591d3 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,7 +1,23 @@ let + catbus-lifx = builtins.fetchGit { + url = "https://github.com/ethulhu/catbus-lifx"; + # TODO: rev = "..."; + }; + catbus-snapcast = builtins.fetchGit { + url = "https://github.com/ethulhu/catbus-snapcast"; + # TODO: rev = "..."; + }; + catbus-wakeonlan = builtins.fetchGit { + url = "https://github.com/ethulhu/catbus-wakeonlan"; + rev = "5b9435bff8ce11bbbf720084e27c2c6f471934f6"; + }; + catbus-web-ui = builtins.fetchGit { + url = "https://github.com/ethulhu/catbus-web-ui"; + # TODO: rev = "..."; + }; helix = builtins.fetchGit { url = "https://github.com/ethulhu/helix"; - rev = "e10d1a0d38a32fd1e5971813c7c56574abecda24"; + rev = "b308ffcd9182942df93ceed7b57fe46a049aa505"; }; jackalope = builtins.fetchGit { url = "https://git.sr.ht/~eth/jackalope"; @@ -20,9 +36,10 @@ in 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 catbus-lifx {}; + catbus-snapcast = pkgs.callPackage catbus-snapcast {}; + catbus-wakeonlan = pkgs.callPackage catbus-wakeonlan {}; + catbus-web-ui = pkgs.callPackage catbus-web-ui {}; dlnatoad = pkgs.callPackage ./dlnatoad {}; |