forked from lix-project/lix
17 lines
276 B
Nix
17 lines
276 B
Nix
|
{ var, value }:
|
||
|
|
||
|
with import ./config.nix;
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "test";
|
||
|
buildCommand = ''
|
||
|
echo ${var} = "''$${var}"
|
||
|
echo -n "''$${var}" > "$out"
|
||
|
'';
|
||
|
|
||
|
impureEnvVars = [ var ];
|
||
|
|
||
|
outputHashAlgo = "sha256";
|
||
|
outputHash = builtins.hashString "sha256" value;
|
||
|
}
|