* aspell: updated to 0.60.6 to make it compile on GCC 4.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14049
This commit is contained in:
Eelco Dolstra 2009-02-12 19:34:03 +00:00
parent 8f85602506
commit 1408710472
1 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
{stdenv, fetchurl, perl}: {stdenv, fetchurl, perl}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "aspell-0.60.5"; name = "aspell-0.60.6";
src = fetchurl { src = fetchurl {
url = ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.5.tar.gz; url = "ftp://ftp.gnu.org/gnu/aspell/${name}.tar.gz";
md5 = "17fd8acac6293336bcef44391b71e337"; sha256 = "0dhfgkp2y16z0agdvhn4iaikr34l4agjz2nannqvpxkcw8h1ansg";
}; };
buildInputs = [perl]; buildInputs = [perl];