GNU ed 1.1.

svn path=/nixpkgs/trunk/; revision=13072
This commit is contained in:
Ludovic Courtès 2008-10-15 07:26:14 +00:00
parent 1669c048a2
commit 624c3c9ff6

View File

@ -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";