mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
pkgs: Replaced unnecessary super references with self
This commit is contained in:
parent
e95262436a
commit
18c18e3e5c
1 changed files with 9 additions and 7 deletions
|
|
@ -21,6 +21,7 @@ let
|
|||
notmuch = super.callPackage ./notmuch { inherit (super) notmuch; };
|
||||
|
||||
unstable = import sources.nixpkgs-unstable { inherit (self) config; };
|
||||
|
||||
nur = import sources.NUR {
|
||||
nurpkgs = self;
|
||||
pkgs = self;
|
||||
|
|
@ -51,19 +52,20 @@ let
|
|||
|
||||
hextorgba = (import ../lib/colorhelpers.nix { inherit (super) lib; }).hextorgba;
|
||||
|
||||
ff-sponsorblock = super.callPackage ./ff-sponsorblock { };
|
||||
ff-sponsorblock = self.callPackage ./ff-sponsorblock { };
|
||||
|
||||
kat-glauca-dns = super.callPackage ./kat-glauca-dns { };
|
||||
kat-glauca-dns = self.callPackage ./kat-glauca-dns { };
|
||||
|
||||
kat-website = super.callPackage ./kat-website { };
|
||||
kat-website = self.callPackage ./kat-website { };
|
||||
|
||||
kat-weather = super.callPackage ./kat-weather { };
|
||||
kat-weather = self.callPackage ./kat-weather { };
|
||||
|
||||
kat-gpg-status = super.callPackage ./kat-gpg-status { };
|
||||
kat-gpg-status = self.callPackage ./kat-gpg-status { };
|
||||
|
||||
kat-tw-export = super.callPackage ./kat-tw-export { };
|
||||
kat-tw-export = self.callPackage ./kat-tw-export { };
|
||||
|
||||
kat-scrot = self.callPackage ./kat-scrot { };
|
||||
|
||||
kat-scrot = super.callPackage ./kat-scrot { };
|
||||
} // super.lib.optionalAttrs (builtins.pathExists ../private/pkgs)
|
||||
(import ../private/pkgs { inherit super self; });
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue