Commit a8e3d0d0 authored by Manuel Frischknecht's avatar Manuel Frischknecht Committed by github-actions[bot]
Browse files

Mark `nix-ld` as broken on 32 bit targets

See https://github.com/Mic92/nix-ld/issues/64

(cherry picked from commit 52a254611888327f4ce342e6cdd008d972f7cdb5)
parent 42e452b7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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;
  };
}