summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/ed
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-10-15 07:26:14 +0000
committerLudovic Courtès <ludo@gnu.org>2008-10-15 07:26:14 +0000
commit624c3c9ff654b827f5e702ad5281bbf5b01331b2 (patch)
tree99a02a27536efe52d7f06c6d2fd817610a810b2c /pkgs/applications/editors/ed
parent1669c048a27033f6a5b49d6d9d936462dc27edd7 (diff)
GNU ed 1.1.
svn path=/nixpkgs/trunk/; revision=13072
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 716dad8dde78..cfa366b66ad7 100644
--- a/pkgs/applications/editors/ed/default.nix
+++ b/pkgs/applications/editors/ed/default.nix
@@ -1,12 +1,14 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
- name = "ed-1.0";
+ name = "ed-1.1";
src = fetchurl {
url = "mirror://gnu/ed/${name}.tar.bz2";
- sha256 = "0mwkbz6qy6hqbdk7hwl6271yjsm5nh1v70aynp51zncj0s0b2r7r";
+ sha256 = "0hikn102jywxy86599k0ys4h2r3lshlfihrpjr7dqaxch49pgb56";
};
+ doCheck = true;
+
meta = {
description = "GNU ed, an implementation of the standard Unix editor";