a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
9 lines
392 B
Bash
9 lines
392 B
Bash
# Use the last part of the out path as hash input for the build.
|
|
# This should ensure that it is deterministic across rebuilds of the same
|
|
# derivation and not easily collide with other builds.
|
|
# We also truncate the hash so that it cannot cause reference cycles.
|
|
export NIX_CFLAGS_COMPILE+=" -frandom-seed=$(
|
|
outbase="${out##*/}"
|
|
randomseed="${outbase:0:10}"
|
|
echo $randomseed
|
|
)"
|