mirror of
https://github.com/NixOS/nix.git
synced 2025-11-08 19:46:02 +01:00
14 lines
280 B
Bash
14 lines
280 B
Bash
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
out1=$(nix-build ./text-hashed-output.nix -A hello --no-out-link)
|
|
|
|
# Store layer needs bugfix
|
|
requireDaemonNewerThan "2.30pre20250515"
|
|
|
|
clearStore
|
|
|
|
out2=$(nix-build ./text-hashed-output.nix -A wrapper --no-out-link)
|
|
|
|
diff -r "$out1" "$out2"
|