diff options
author | Robert Hensing <roberth@users.noreply.github.com> | 2023-09-07 17:33:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 17:33:02 +0200 |
commit | e34493a70e59375f65b48c6841a792a24e46ff24 (patch) | |
tree | d85b0de783e519dddfa964d5cb0494e93ec4cc61 /tests/dyn-drv/dep-built-drv.sh | |
parent | 37d6fff113501f9230178215ea61192cd6e4f9f1 (diff) | |
parent | 80d7994f52ccefca2f2fbe4ee64741a6f49884ff (diff) |
Merge pull request #4628 from obsidiansystems/dynamic-drvs
Dynamic derivations RFC 92
Diffstat (limited to 'tests/dyn-drv/dep-built-drv.sh')
-rw-r--r-- | tests/dyn-drv/dep-built-drv.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/dyn-drv/dep-built-drv.sh b/tests/dyn-drv/dep-built-drv.sh index 8c4a45e3b..c3daf2c59 100644 --- a/tests/dyn-drv/dep-built-drv.sh +++ b/tests/dyn-drv/dep-built-drv.sh @@ -6,4 +6,6 @@ out1=$(nix-build ./text-hashed-output.nix -A hello --no-out-link) clearStore -expectStderr 1 nix-build ./text-hashed-output.nix -A wrapper --no-out-link | grepQuiet "Dependencies on the outputs of dynamic derivations are not yet supported" +out2=$(nix-build ./text-hashed-output.nix -A wrapper --no-out-link) + +diff -r $out1 $out2 |