mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
16 lines
404 B
Nix
16 lines
404 B
Nix
{ 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";
|
|
};
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.windows;
|
|
};
|
|
}
|