mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
Merge pull request #165526 from helsinki-systems/drop/gnused_422
gnused_422: drop
This commit is contained in:
commit
42778c739f
2 changed files with 1 additions and 40 deletions
|
@ -1,35 +0,0 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnused";
|
||||
version = "4.2.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/sed/sed-${version}.tar.bz2";
|
||||
sha256 = "f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7";
|
||||
};
|
||||
|
||||
configureFlags = lib.optional stdenv.hostPlatform.isMinGW "ac_cv_func__set_invalid_parameter_handler=no";
|
||||
|
||||
outputs = [ "out" "info" ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.gnu.org/software/sed/";
|
||||
description = "GNU sed, a batch stream editor";
|
||||
|
||||
longDescription = ''
|
||||
Sed (stream editor) isn't really a true text editor or text
|
||||
processor. Instead, it is used to filter text, i.e., it takes
|
||||
text input and performs some operation (or set of operations) on
|
||||
it and outputs the modified text. Sed is typically used for
|
||||
extracting part of a file using pattern matching or substituting
|
||||
multiple occurrences of a string within a file.
|
||||
'';
|
||||
|
||||
license = lib.licenses.gpl3Plus;
|
||||
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = [ ];
|
||||
mainProgram = "sed";
|
||||
};
|
||||
}
|
|
@ -6164,11 +6164,7 @@ with pkgs;
|
|||
|
||||
gnu-pw-mgr = callPackage ../tools/security/gnu-pw-mgr { };
|
||||
|
||||
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 { };
|
||||
gnused = callPackage ../tools/text/gnused { };
|
||||
|
||||
gnutar = callPackage ../tools/archivers/gnutar { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue