pkgs: add foodogsquaredLib

This commit is contained in:
Gabriel Arazas 2024-08-24 12:54:26 +08:00
parent 9eaf577057
commit 1ef82f17f5
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
= Packages
:toc:
My custom packages live here.
My custom packages and nixpkgs extensions live here.
It is setup similar to link:https://github.com/NixOS/nixpkgs/[nixpkgs] and link:https://github.com/foo-dogsquared/nur[my previous NUR].
Thus, the conventions are similar to the package definitions in the mentioned repositories.

View File

@ -2,6 +2,10 @@
with pkgs;
lib.makeScope newScope (self: {
# My custom nixpkgs extensions.
foodogsquaredLib = import ../lib { inherit pkgs; };
# My custom packages.
awesome-cli = callPackage ./awesome-cli { };
base16-builder-go = callPackage ./base16-builder-go { };
blender-blendergis = python3Packages.callPackage ./blender-blendergis { };