diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-05 23:53:47 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-06-05 23:53:47 +0100 |
commit | ee8c3a6c284a7934b00ef02756fd749d02afe392 (patch) | |
tree | 6dc42d4278967f05d4e4094ae86933f1b346aa4b /pkgs | |
parent | 32c5d56030673c88a408d505d029a7ed62e0bcb4 (diff) |
improve editability of helix package reference
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 1aeb374..ac7130e 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,4 +1,8 @@ let + helix = builtins.fetchGit { + url = "https://github.com/ethulhu/helix"; + rev = "e6af1aa7372e299ab6f50cfa916119082d1738cf"; + }; recipes = builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; rev = "9c370bf0cd6a06bbcfa17e3c1f42f6ac6f92ffdb"; @@ -6,6 +10,7 @@ let in pkgs: super: { eth = { + helix = pkgs.callPackage helix {}; recipes = pkgs.callPackage recipes {}; dwm = pkgs.callPackage ./dwm {}; @@ -14,8 +19,6 @@ in 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"; } ) {}; - dlnatoad = pkgs.callPackage ./dlnatoad {}; libnpupnp = pkgs.callPackage ./libnpupnp { }; |