diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 21:42:02 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-18 21:42:02 +0100 |
commit | 50b27be54d368f38945bae71bc0683330c2a7693 (patch) | |
tree | fcf280c51ede472d972d6b75f14e578c07685500 /pkgs | |
parent | a3a64453e0ec17451a454b70d506ceceabb2ccdf (diff) |
put my own packages under the namespace nixpkgs.eth.*
Diffstat (limited to '')
-rw-r--r-- | pkgs/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 3a5e509..f4b4a25 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,3 +1,5 @@ self: super: { - recipesEthMoe = self.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; } ) {}; + eth = { + recipesEthMoe = self.callPackage ( builtins.fetchGit { url = "https://github.com/ethulhu/recipes.eth.moe"; } ) {}; + }; } |