Bruno BELANYI
7d91351c8e
This is a nice helper to know what has changed after bumping a flake's inputs.
19 lines
415 B
Nix
19 lines
415 B
Nix
{ pkgs }:
|
|
rec {
|
|
diff-flake = pkgs.callPackage ./diff-flake { };
|
|
|
|
havm = pkgs.callPackage ./havm { };
|
|
|
|
lohr = pkgs.callPackage ./lohr { };
|
|
|
|
nolimips = pkgs.callPackage ./nolimips { };
|
|
|
|
podgrab = pkgs.callPackage ./podgrab { };
|
|
|
|
unbound-zones-adblock = pkgs.callPackage ./unbound-zones-adblock {
|
|
inherit unified-hosts-lists;
|
|
};
|
|
|
|
unified-hosts-lists = pkgs.callPackage ./unified-hosts-lists { };
|
|
}
|