mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
10414e80ed
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.
5 lines
111 B
Nix
5 lines
111 B
Nix
# Build the package with the test suite enabled.
|
|
args@{...}: (import ../. args).override {
|
|
doCheck = true;
|
|
}
|