Merge pull request #121033 from Radvendii/libgnurx-static

libgnurx: output libgnurx.a when static
This commit is contained in:
Sandro
2021-04-30 04:07:07 +02:00
committed by GitHub

View File

@@ -10,6 +10,11 @@ in stdenv.mkDerivation rec {
sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi";
};
# file looks for libgnurx.a when compiling statically
postInstall = lib.optionalString stdenv.hostPlatform.isStatic ''
ln -s $out/lib/libgnurx{.dll.a,.a}
'';
meta = {
platforms = lib.platforms.windows;
};