summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/dico
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-07-22 09:01:20 +0000
committerLudovic Courtès <ludo@gnu.org>2010-07-22 09:01:20 +0000
commit3c482c79d65466dd13eb1cf64c2ff983659cf75b (patch)
treeadd7b91566c0498be9771cd4a3d078fc8ff37252 /pkgs/servers/dico
parentc4d05c0e3e2210710c4015ac97d3f4ab9581610d (diff)
GNU Dico 2.1.
svn path=/nixpkgs/trunk/; revision=22695
Diffstat (limited to 'pkgs/servers/dico')
-rw-r--r--pkgs/servers/dico/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/servers/dico/default.nix b/pkgs/servers/dico/default.nix
index 0be61a1a558c..ac897554ce20 100644
--- a/pkgs/servers/dico/default.nix
+++ b/pkgs/servers/dico/default.nix
@@ -1,15 +1,16 @@
-{ fetchurl, stdenv, libtool, gettext, zlib, readline, guile, python }:
+{ fetchurl, stdenv, libtool, gettext, zlib, readline, gsasl
+, guile, python }:
stdenv.mkDerivation rec {
- name = "dico-2.0";
+ name = "dico-2.1";
src = fetchurl {
url = "mirror://gnu/dico/${name}.tar.gz";
- sha256 = "03cpg16jbsv5xh9mvyjj7myvpdpb82354a1yjrhcy0k5w8faa9kv";
+ sha256 = "0cs4jxnz6g5xqrhkbnycn7jl9fs8jfjh33vza7i68m8qmjwx2vza";
};
# XXX: Add support for GNU SASL.
- buildInputs = [ libtool gettext zlib readline guile python ];
+ buildInputs = [ libtool gettext zlib readline gsasl guile python ];
doCheck = true;