tahoe-lafs/nix/tests.nix
Jean-Paul Calderone 10414e80ed Remove some unnecessary hierarchy
I thought `default.nix` was handled specially for the purposes of automatic
parameter population but it isn't.  Instead, you just need this `args@{...}`
pattern.
2023-03-14 10:25:02 -04:00

5 lines
111 B
Nix

# Build the package with the test suite enabled.
args@{...}: (import ../. args).override {
doCheck = true;
}