about summary refs log tree commit diff
path: root/pkgs/tools/text/gnused
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-24 00:03:59 +0100
committerajs124 <git@ajs124.de>2022-03-24 00:03:59 +0100
commit9f69ce405973ba32f07f1607aa3aa83b6adc2192 (patch)
treed90d8f6dd355534b45b75df22621c4f9e4eea707 /pkgs/tools/text/gnused
parentc662a1154e57451301d7c09a136329dd67b272a1 (diff)
downloadnixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.tar
nixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.tar.gz
nixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.tar.bz2
nixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.tar.lz
nixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.tar.xz
nixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.tar.zst
nixlib-9f69ce405973ba32f07f1607aa3aa83b6adc2192.zip
gnused_422: drop
this version was re-introduced in cb70a594cbf6cc097d9ac57d3b036d2418452006
should not be needed anymore
Diffstat (limited to 'pkgs/tools/text/gnused')
-rw-r--r--pkgs/tools/text/gnused/422.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/tools/text/gnused/422.nix b/pkgs/tools/text/gnused/422.nix
deleted file mode 100644
index 15e57e319019..000000000000
--- a/pkgs/tools/text/gnused/422.nix
+++ /dev/null
@@ -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";
-  };
-}