Merge pull request #145566 from risicle/ris-xscreensaver-aarch64
xscreensaver: fix build for aarch64
This commit is contained in:
commit
3abdeae008
@ -37,6 +37,9 @@ stdenv.mkDerivation rec {
|
||||
"--with-app-defaults=${placeholder "out"}/share/xscreensaver/app-defaults"
|
||||
];
|
||||
|
||||
# "marbling" has NEON code that mixes signed and unsigned vector types
|
||||
NIX_CFLAGS_COMPILE = lib.optional (with stdenv.hostPlatform; isAarch64 || isAarch32) "-flax-vector-conversions";
|
||||
|
||||
postInstall = ''
|
||||
for bin in $out/bin/*; do
|
||||
wrapProgram "$bin" \
|
||||
|
Loading…
Reference in New Issue
Block a user