nix-ld: mark as broken on 32 bit targets (#269919)

See https://github.com/Mic92/nix-ld/issues/64
This commit is contained in:
mfrischknecht
2023-11-27 20:28:44 +01:00
committed by GitHub
parent 491af1f1cc
commit 34d92e99fb
@@ -52,5 +52,9 @@ stdenv.mkDerivation rec {
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.linux;
# 32 bit builds are broken due to a missing #define value:
# https://github.com/Mic92/nix-ld/issues/64
broken = stdenv.is32bit;
};
}