mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-26 22:31:39 +03:00
9 lines
223 B
Nix
9 lines
223 B
Nix
{
|
|
lib ? import <nixpkgs/lib>,
|
|
...
|
|
}: let
|
|
findCyclesTests = import ./findCycles.nix {inherit lib;};
|
|
sanitizeGraphTests = import ./sanitizeGraph.nix {inherit lib;};
|
|
in {
|
|
inherit findCyclesTests sanitizeGraphTests;
|
|
} |