nixpkgs-lib-profiling/flake.nix

16 lines
446 B
Nix
Raw Normal View History

2024-09-27 21:15:41 +02:00
{
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;
};
}