summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-03-04 15:52:41 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-03-04 15:52:41 +0000
commit962b01f686c648906df756cf94dac76776620973 (patch)
treed42d5bc62d1d1fdf77ce51a473b9070252035094 /pkgs/tools
parent27809f0ec4f070156004ac4f2afaf1409d5eae05 (diff)
* Remove unnecessary copy on sed.
svn path=/nixpkgs/trunk/; revision=32773
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/gnused/4.2.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/tools/text/gnused/4.2.nix b/pkgs/tools/text/gnused/4.2.nix
deleted file mode 100644
index 7a75f50d122ab..0000000000000
--- a/pkgs/tools/text/gnused/4.2.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{stdenv, fetchurl}:
-
-stdenv.mkDerivation rec {
-  name = "gnused-4.2.1";
-  
-  src = fetchurl {
-    url = "mirror://gnu/sed/sed-4.2.1.tar.bz2";
-    sha256 = "13wlsb4sf5d5a82xjhxqmdvrrn36rmw5f0pl9qyb9zkvldnb7hra";
-  };
-  
-  doCheck = true;
-
-  meta = {
-    homepage = http://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 = "GPLv3+";
-  };
-}