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

let
  version = "2.5.1";
in stdenv.mkDerivation rec {
  name = "libgnurx-${version}";
  src = fetchurl {
    url = "mirror://sourceforge/mingw/Other/UserContributed/regex/mingw-regex-${version}/mingw-${name}-src.tar.gz";
    sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi";
  };

  meta = {
    platforms = stdenv.lib.platforms.windows;
  };
}