forked from lix-project/hydra
10 lines
147 B
Nix
10 lines
147 B
Nix
rec {
|
|
path = "@testPath@";
|
|
|
|
mkDerivation = args:
|
|
derivation ({
|
|
system = builtins.currentSystem;
|
|
PATH = path;
|
|
} // args);
|
|
}
|