summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 54ee6a4..24d89e2 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -2,25 +2,21 @@
lib.makeScope newScope (self: {
- /*example = self.callPackage ./example { };*/
+ /*example = self.call Package ./example { };*/
pywikibot-scripts = self.callPackage ./pywikibot-scripts { };
pywikibot = self.callPackage ./pywikibot {
- pywikibot-scripts = self.pywikibot-scripts;
+ inherit (self) pywikibot-scripts;
};
pywb = self.callPackage ./pywb {
- pywikibot = self.pywikibot;
- pywikibot-scripts = self.pywikibot-scripts;
+ inherit (self) pywikibot pywikibot-scripts;
};
wikiteam = self.callPackage ./wikiteam { };
little-things = self.callPackage ./little-things { };
shell = self.callPackage ./shell {
- little-things = self.little-things;
- pywb = self.pywb;
- pywikibot = self.pywikibot;
- wikiteam = self.wikiteam;
+ inherit (self) little-things pywb pywikibot wikiteam;
};
})