* Refactoring: renamed *.nix.in to *.nix.

This commit is contained in:
Eelco Dolstra 2009-03-17 17:11:55 +00:00
parent 2d5114452d
commit 51e7e32c3b
22 changed files with 209 additions and 264 deletions

27
tests/gc-concurrent.nix Normal file
View file

@ -0,0 +1,27 @@
with import ./config.nix;
rec {
input1 = mkDerivation {
name = "dependencies-input-1";
builder = ./dependencies.builder1.sh;
};
input2 = mkDerivation {
name = "dependencies-input-2";
builder = ./dependencies.builder2.sh;
};
test1 = mkDerivation {
name = "gc-concurrent";
builder = ./gc-concurrent.builder.sh;
inherit input1 input2;
};
test2 = mkDerivation {
name = "gc-concurrent2";
builder = ./gc-concurrent2.builder.sh;
inherit input1 input2;
};
}