core/pkgs/by-name/wi/windows/libgnurx/default.nix

20 lines
569 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, stdenv, fetchurl }:
2024-05-13 21:24:10 +00:00
let version = "2.5.1";
2024-05-02 00:46:19 +00:00
in stdenv.mkDerivation rec {
pname = "libgnurx";
inherit version;
src = fetchurl {
2024-05-13 21:24:10 +00:00
url =
"mirror://sourceforge/mingw/Other/UserContributed/regex/mingw-regex-${version}/mingw-${pname}-${version}-src.tar.gz";
2024-05-02 00:46:19 +00:00
sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi";
};
# file looks for libgnurx.a when compiling statically
postInstall = lib.optionalString stdenv.hostPlatform.isStatic ''
ln -s $out/lib/libgnurx{.dll.a,.a}
'';
2024-05-13 21:24:10 +00:00
meta = { platforms = lib.platforms.windows; };
2024-05-02 00:46:19 +00:00
}