discount: use deterministic mangling

`discount` offers a randomized string mangling function which results in
non-deterministic output.

This commit disables the randomized mangling in favor of a deterministic
approach. `discount` has builtin support for this through the
`--debian-glitch` configuration flag.
This commit is contained in:
Vincent Haupert 2022-01-18 16:19:55 +01:00
parent dd3cc89b72
commit d8ae5dc813

View file

@ -26,6 +26,8 @@ stdenv.mkDerivation rec {
"--pkg-config"
"--shared"
"--with-fenced-code"
# Use deterministic mangling
"--debian-glitch"
];
enableParallelBuilding = true;