about summary refs log tree commit diff
path: root/pkgs/applications/editors/ed
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-30 22:41:01 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-30 22:41:01 +0200
commit74b808a66f2ce58f8edaca4e08b14f9c28e9a9e7 (patch)
tree3f289261bdcb8589c1202f00803b9f210b403ef8 /pkgs/applications/editors/ed
parentfcafdd27616b91049c506441802b9cfe970388d4 (diff)
Revert "ed: update to 1.10 (close #3852)"
This reverts commit 60902b97fe4a96d370bc0c5e3690fa45da77d78d. It
breaks building on Darwin:

  http://hydra.nixos.org/build/13832410

It also adds a gratuitous dependency to the stdenv bootstrap.
Diffstat (limited to 'pkgs/applications/editors/ed')
-rw-r--r--pkgs/applications/editors/ed/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index ea8b2b27987b6..0c764fcf8f86d 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -1,12 +1,11 @@
-{ fetchurl, stdenv, lzip }:
+{ fetchurl, stdenv }:
 
 stdenv.mkDerivation rec {
-  version = "1.10";
-  name = "ed-${version}";
+  name = "ed-1.9";
 
   src = fetchurl {
-    url = "mirror://gnu/ed/${name}.tar.lz";
-    sha256 = "16kycdm5fcvpdr41hxb2da8da6jzs9dqznsg5552z6rh28n0jh4m";
+    url = "mirror://gnu/ed/${name}.tar.gz";
+    sha256 = "122syihsx2hwzj75mkf5a9ssiky2xby748kp4cc00wzhmp7p5cym";
   };
 
   /* FIXME: Tests currently fail on Darwin:
@@ -24,8 +23,6 @@ stdenv.mkDerivation rec {
     compileFlags = [ "CC=${stdenv.cross.config}-gcc" ];
   };
 
-  buildInputs = [ lzip ];
-
   meta = {
     description = "An implementation of the standard Unix editor";
 
@@ -41,7 +38,9 @@ stdenv.mkDerivation rec {
     '';
 
     license = stdenv.lib.licenses.gpl3Plus;
+
     homepage = http://www.gnu.org/software/ed/;
-    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
+
+    maintainers = [ ];
   };
 }