perl modules CGI::Session and Digest::SHA1

svn path=/nixpkgs/trunk/; revision=4845
This commit is contained in:
Eelco Visser 2006-02-17 12:03:04 +00:00
parent 8b0dd0fcdb
commit 8894f77b12

View file

@ -1451,6 +1451,22 @@ rec {
};
};
perlDigestSHA1 = import ../development/perl-modules/generic perl {
name = "Digest-SHA1-2.11";
src = fetchurl {
url = http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.11.tar.gz;
md5 = "2449bfe21d6589c96eebf94dae24df6b";
};
};
perlCGISession = import ../development/perl-modules/generic perl {
name = "CGI-Session-3.95";
src = fetchurl {
url = http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/CGI-Session-3.95.tar.gz;
md5 = "fe9e46496c7c711c54ca13209ded500b";
};
};
wxPython = (import ../development/python-modules/wxPython-2.5) {
inherit fetchurl stdenv pkgconfig wxGTK python;
};