windows.libgnurx: init

This commit is contained in:
Matthew Bauer 2018-07-20 22:00:58 -04:00
parent 522b61a069
commit 53cb8dc09e
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ 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";
};
}

View file

@ -14546,6 +14546,8 @@ with pkgs;
};
wxMSW = callPackage ../os-specific/windows/wxMSW-2.8 { };
libgnurx = callPackage ../os-specific/windows/libgnurx { };
};
wirelesstools = callPackage ../os-specific/linux/wireless-tools { };