summary refs log tree commit diff
path: root/pkgs/os-specific/windows/libgnurx/default.nix
blob: e760bddabfbfa33b6839838c3d9de72e96cc505a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchurl }:

let
  version = "2.5.1";
in stdenv.mkDerivation rec {
  pname = "libgnurx";
  inherit version;
  src = fetchurl {
    url = "mirror://sourceforge/mingw/Other/UserContributed/regex/mingw-regex-${version}/mingw-${pname}-${version}-src.tar.gz";
    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;
  };
}