dico: minor update, but still bad: wants "gets"

This commit is contained in:
Vladimír Čunát 2013-02-23 14:51:40 +01:00
parent c5561a8e76
commit 4601e6734a

View file

@ -1,16 +1,16 @@
{ fetchurl, stdenv, libtool, gettext, zlib, readline, gsasl
, guile, python }:
, guile, python, pcre }:
stdenv.mkDerivation rec {
name = "dico-2.1";
name = "dico-2.2";
src = fetchurl {
url = "mirror://gnu/dico/${name}.tar.gz";
sha256 = "0cs4jxnz6g5xqrhkbnycn7jl9fs8jfjh33vza7i68m8qmjwx2vza";
url = "mirror://gnu/dico/${name}.tar.xz";
sha256 = "04pjks075x20d19l623mj50bw64g8i41s63z4kzzqcbg9qg96x64";
};
# XXX: Add support for GNU SASL.
buildInputs = [ libtool gettext zlib readline gsasl guile python ];
buildInputs = [ libtool gettext zlib readline gsasl guile python pcre ];
doCheck = true;