Initial commit

This commit is contained in:
2024-09-27 21:15:41 +02:00
committed by h7x4
commit 21ab209d6e
8 changed files with 146 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
inputs.nixpkgs-lib.url = "github:nix-community/nixpkgs.lib/master";
outputs = { self, nixpkgs-lib }: let
inherit (nixpkgs-lib) lib;
in {
genAttrs = import ./src/genAttrs.nix lib;
subtractLists = import ./src/subtractLists.nix lib;
unique = import ./src/unique.nix lib;
# This doesn't actually exist, but I've seen it's definition being used
# a few places.
keepAttrs = import ./src/keepAttrs.nix lib;
};
}