summaryrefslogtreecommitdiff
path: root/pkgs/default.nix
diff options
context:
space:
mode:
authorGravatar klea2025-12-11 20:42:41 +0000
committerGravatar klea2025-12-11 20:42:41 +0000
commit3a7b48d67de536538d755f6d18af71cc65eafc49 (patch)
tree869657654cbed6cba94381284f62d451940d7587 /pkgs/default.nix
parenttry to make scripts work in nix (diff)
signature
pywb: create wrapper
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r--pkgs/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index aee22c3..c115292 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -5,8 +5,17 @@ lib.makeScope newScope (self: {
/*example = self.callPackage ./example { };*/
pywikibot-scripts = self.callPackage ./pywikibot-scripts { };
- pywikibot = self.callPackage ./pywikibot { pywikibot-scripts = self.pywikibot-scripts; };
+ pywikibot = self.callPackage ./pywikibot {
+ pywikibot-scripts = self.pywikibot-scripts;
+ };
+ pywb = self.callPackage ./pywb {
+ pywikibot = self.pywikibot;
+ pywikibot-scripts = self.pywikibot-scripts;
+ };
- shell = self.callPackage ./shell { pywikibot = self.pywikibot; };
+ shell = self.callPackage ./shell {
+ pywb = self.pywb;
+ pywikibot = self.pywikibot;
+ };
})