From 1ef82f17f5d93696d2b4a4ee5508637e836ac318 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 24 Aug 2024 12:54:26 +0800 Subject: [PATCH] pkgs: add foodogsquaredLib --- pkgs/README.adoc | 2 +- pkgs/default.nix | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/README.adoc b/pkgs/README.adoc index d19355fe..3820d128 100644 --- a/pkgs/README.adoc +++ b/pkgs/README.adoc @@ -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. diff --git a/pkgs/default.nix b/pkgs/default.nix index a90b685d..8ab3d68e 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -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 { };