From 2543d1581728b37c4f35e2dfef1c7ecf2a68fb5a Mon Sep 17 00:00:00 2001 From: Emily Date: Sun, 4 Aug 2024 13:54:04 +0100 Subject: [PATCH] libsamplerate: mark broken on MinGW This should work in principle, but fails in practice. --- pkgs/development/libraries/libsamplerate/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libsamplerate/default.nix b/pkgs/development/libraries/libsamplerate/default.nix index bebe6c591ba4..45cd9d091dd0 100644 --- a/pkgs/development/libraries/libsamplerate/default.nix +++ b/pkgs/development/libraries/libsamplerate/default.nix @@ -32,5 +32,7 @@ in stdenv.mkDerivation rec { license = licenses.bsd2; maintainers = with maintainers; [ lovek323 ]; platforms = platforms.all; + # Linker is unhappy with the `.def` file. + broken = stdenv.hostPlatform.isMinGW; }; }