diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-17T16·33+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-17T16·33+0000 |
commit | 2d5114452d8a8f73c858f9beb6bfaafe35e7bf9a (patch) | |
tree | 676ad5958bce42d91d09518cf44c61a6414ac0e2 /tests/config.nix.in | |
parent | 33ecb4299107da91f5d61131ead37afabe496649 (diff) |
* Regression test for the `exportReferencesGraph'
derivation attribute.
Diffstat (limited to 'tests/config.nix.in')
-rw-r--r-- | tests/config.nix.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/config.nix.in b/tests/config.nix.in new file mode 100644 index 000000000000..a58295f9828f --- /dev/null +++ b/tests/config.nix.in @@ -0,0 +1,9 @@ +{ + mkDerivation = args: + derivation ({ + system = "@system@"; + builder = "@shell@"; + args = ["-e" args.builder]; + PATH = "@testPath@"; + } // removeAttrs args ["builder"]); +} |