summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEthel Morgan <eth@ethulhu.co.uk>2020-05-18 21:42:02 +0100
committerEthel Morgan <eth@ethulhu.co.uk>2020-05-18 21:42:02 +0100
commit50b27be54d368f38945bae71bc0683330c2a7693 (patch)
treefcf280c51ede472d972d6b75f14e578c07685500
parenta3a64453e0ec17451a454b70d506ceceabb2ccdf (diff)
put my own packages under the namespace nixpkgs.eth.*
Diffstat (limited to '')
-rw-r--r--pkgs/default.nix4
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"; } ) {};
+ };
}