diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-01-19T13·53+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-01-19T14·00+0100 |
commit | 3c4c30eadd879f512ac2075a7ba39c37ff77bf5c (patch) | |
tree | f6588bf8f0c0ab2d117ae27a09ed7cd7c4dd4a8c /tests/check.nix | |
parent | 2896bb682691e8ce2be055a386bdeef93ae05586 (diff) |
Rewrite builtin derivation environment
Also add a test. Fixes #1803. Closes #1805.
Diffstat (limited to 'tests/check.nix')
-rw-r--r-- | tests/check.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/check.nix b/tests/check.nix index b330ab9c984c..585d43032a91 100644 --- a/tests/check.nix +++ b/tests/check.nix @@ -9,4 +9,9 @@ with import ./config.nix; date +%s.%N > $out/date ''; }; + + fetchurl = import <nix/fetchurl.nix> { + url = "file://" + toString ./lang/eval-okay-xml.out; + sha256 = "426fefcd2430e986551db13fcc2b1e45eeec17e68ffeb6ff155be2f8aaf5407e"; + }; } |