1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

gnused: fix Windows build

This commit is contained in:
volth 2018-11-11 06:57:28 +00:00
parent 0ae3b49bb4
commit 9d164580ba
3 changed files with 7 additions and 2 deletions

View file

@ -8,6 +8,8 @@ stdenv.mkDerivation {
sha256 = "f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7";
};
configureFlags = stdenv.lib.optional stdenv.hostPlatform.isMinGW "ac_cv_func__set_invalid_parameter_handler=no";
outputs = [ "out" "info" ];
meta = {

View file

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
platforms = stdenv.lib.platforms.unix;
maintainers = [ ];
};
}

View file

@ -2964,7 +2964,10 @@ with pkgs;
gnu-pw-mgr = callPackage ../tools/security/gnu-pw-mgr { };
gnused = callPackage ../tools/text/gnused { };
gnused = if !stdenv.hostPlatform.isWindows then
callPackage ../tools/text/gnused { } # broken on Windows
else
gnused_422;
# This is an easy work-around for [:space:] problems.
gnused_422 = callPackage ../tools/text/gnused/422.nix { };