diff options
| author | 2025-12-30 18:33:32 +0000 | |
|---|---|---|
| committer | 2025-12-30 18:33:32 +0000 | |
| commit | 68400ffe8d0ae90c7d2a23c518c7327fdbfd7ef1 (patch) | |
| tree | 43f18936e9edc45e594eac3caec01238cd12fd89 /pkgs | |
| parent | REUSE: JAA initially made that the recentchanges thing (diff) | |
| signature | ||
pkgs: use inherit
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/default.nix | 12 |
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; }; }) |
