summary refs log tree commit diff
path: root/pkgs/applications/editors/ed
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-08-29 11:40:46 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-08-29 13:58:51 +0200
commit60902b97fe4a96d370bc0c5e3690fa45da77d78d (patch)
treec53051407ebb0e8823f64838c0dc9eee973442cc /pkgs/applications/editors/ed
parentdd3f3bdcc28282e6d235ff16d7173ee9ea81d7b0 (diff)
downloadnixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.tar
nixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.tar.gz
nixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.tar.bz2
nixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.tar.lz
nixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.tar.xz
nixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.tar.zst
nixpkgs-60902b97fe4a96d370bc0c5e3690fa45da77d78d.zip
ed: update to 1.10 (close #3852)
Diffstat (limited to 'pkgs/applications/editors/ed')
-rw-r--r--pkgs/applications/editors/ed/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index d3e9a4c4679..b1b9616eaab 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -1,11 +1,12 @@
-{ fetchurl, stdenv }:
+{ fetchurl, stdenv, lzip }:
 
 stdenv.mkDerivation rec {
-  name = "ed-1.9";
+  version = "1.10";
+  name = "ed-${version}";
 
   src = fetchurl {
-    url = "mirror://gnu/ed/${name}.tar.gz";
-    sha256 = "122syihsx2hwzj75mkf5a9ssiky2xby748kp4cc00wzhmp7p5cym";
+    url = "mirror://gnu/ed/${name}.tar.lz";
+    sha256 = "16kycdm5fcvpdr41hxb2da8da6jzs9dqznsg5552z6rh28n0jh4m";
   };
 
   /* FIXME: Tests currently fail on Darwin:
@@ -23,6 +24,8 @@ stdenv.mkDerivation rec {
     compileFlags = [ "CC=${stdenv.cross.config}-gcc" ];
   };
 
+  buildInputs = [ lzip ];
+
   meta = {
     description = "GNU ed, an implementation of the standard Unix editor";
 
@@ -38,9 +41,7 @@ stdenv.mkDerivation rec {
     '';
 
     license = stdenv.lib.licenses.gpl3Plus;
-
     homepage = http://www.gnu.org/software/ed/;
-
-    maintainers = [ ];
+    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
   };
 }