forked from lix-project/lix
Rebecca Turner
2a98ba8b97
The big ones here are `trim-trailing-whitespace` and `end-of-file-fixer`
(which makes sure that every file ends with exactly one newline
character).
Change-Id: Idca73b640883188f068f9903e013cf0d82aa1123
30 lines
629 B
Nix
30 lines
629 B
Nix
let {
|
|
|
|
input1 = derivation {
|
|
name = "dependencies-input-1";
|
|
system = "i086-msdos";
|
|
builder = "/bar/sh";
|
|
args = ["-e" "-x" ./dummy];
|
|
};
|
|
|
|
input2 = derivation {
|
|
name = "dependencies-input-2";
|
|
system = "i086-msdos";
|
|
builder = "/bar/sh";
|
|
args = ["-e" "-x" ./dummy];
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "md5";
|
|
outputHash = "ffffffffffffffffffffffffffffffff";
|
|
};
|
|
|
|
body = derivation {
|
|
name = "dependencies";
|
|
system = "i086-msdos";
|
|
builder = "/bar/sh";
|
|
args = ["-e" "-x" (./dummy + "/FOOBAR/../.")];
|
|
input1 = input1 + "/.";
|
|
inherit input2;
|
|
};
|
|
|
|
}
|