summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/ed
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-07-14 21:59:16 +0000
committerLudovic Courtès <ludo@gnu.org>2009-07-14 21:59:16 +0000
commitaa699024dbbe7adb6c53de98f5f58bb781b503b2 (patch)
tree5fd25e000479e8bc319cf9b47b27a2f52f6d841d /pkgs/applications/editors/ed
parent81d09cd1f361262e7f417b2d23ab3c8287fb4d3d (diff)
GNU Ed 1.4.
svn path=/nixpkgs/trunk/; revision=16365
Diffstat (limited to 'pkgs/applications/editors/ed')
-rw-r--r--pkgs/applications/editors/ed/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/editors/ed/default.nix b/pkgs/applications/editors/ed/default.nix
index 90f58279697d..9f26c0a2886e 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
- name = "ed-1.3";
+ name = "ed-1.4";
src = fetchurl {
url = "mirror://gnu/ed/${name}.tar.gz";
- sha256 = "11xyrzm21l2hhvbc0yanx2acsg1dp3ckmcwq2yl6cbymzvzzfrim";
+ sha256 = "1njgcghms1377csldi1yqjhcpghiii6bshdhnjpqp78sxs2xldnv";
};
doCheck = true;
@@ -27,5 +27,7 @@ stdenv.mkDerivation rec {
license = "GPLv3+";
homepage = http://www.gnu.org/software/ed/;
+
+ maintainers = [ stdenv.lib.maintainers.ludo ];
};
}