forked from mirrors/nixpkgs
libgnurx: output libgnurx.a when static
This commit is contained in:
parent
61a31ad3d6
commit
c5e5ea90e1
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue