323b556dc8
This verison has a worse UI, but also chnages the schema less: One non-null constraint is removed, but no new columns are added. Co-Authored-By: Andrea Ciceri <andrea.ciceri@autistici.org> Co-Authored-By: regnat <rg@regnat.ovh>
15 lines
312 B
Nix
15 lines
312 B
Nix
rec {
|
|
path = "@testPath@";
|
|
|
|
mkDerivation = args:
|
|
derivation ({
|
|
system = builtins.currentSystem;
|
|
PATH = path;
|
|
} // args);
|
|
mkContentAddressedDerivation = args: mkDerivation ({
|
|
__contentAddressed = true;
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "sha256";
|
|
} // args);
|
|
}
|