3
0
Fork 0
forked from mirrors/nixpkgs

libical-0.47 (e.g., contains updated TZ info)

svn path=/nixpkgs/trunk/; revision=30296
This commit is contained in:
Yury G. Kudryashov 2011-11-07 16:48:40 +00:00
parent b01ac075d5
commit 22726acbfc

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl, perl}:
stdenv.mkDerivation {
name = "libical-0.43";
stdenv.mkDerivation rec {
name = "libical-0.47";
src = fetchurl {
url = http://superb-east.dl.sourceforge.net/sourceforge/freeassociation/libical-0.43.tar.gz;
md5 = "5f0a1feb60894d0be537aefea5647474";
url = "mirror://sourceforge/freeassociation/${name}.tar.gz";
sha256 = "1218vaaks9lvx31mrc8212kyngw2k68xm0914vrd77ixn55vnk5g";
};
buildInputs = [ perl ];
buildNativeInputs = [ perl ];
}