pkgs: add fetchers and builders from custom lib

This commit is contained in:
Gabriel Arazas 2024-08-29 17:42:55 +08:00
parent 1912e21e41
commit a3d3e1c153
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -4,6 +4,11 @@ with pkgs;
lib.makeScope newScope (self: { lib.makeScope newScope (self: {
# My custom nixpkgs extensions. # My custom nixpkgs extensions.
foodogsquaredLib = import ../lib { inherit pkgs; }; foodogsquaredLib = import ../lib { inherit pkgs; };
inherit (self.foodogsquaredLib.builders)
makeXDGMimeAssociationList makeXDGPortalConfiguration makeXDGDesktopEntry
buildHugoSite;
inherit (self.foodogsquaredLib.fetchers)
fetchInternetArchive;
# My custom packages. # My custom packages.
awesome-cli = callPackage ./awesome-cli { }; awesome-cli = callPackage ./awesome-cli { };