blob: c3daf2c5917477945ffe9f77a2ba70ae1c43f7d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
source common.sh
out1=$(nix-build ./text-hashed-output.nix -A hello --no-out-link)
clearStore
out2=$(nix-build ./text-hashed-output.nix -A wrapper --no-out-link)
diff -r $out1 $out2
|