* Pan 0.96.

svn path=/nixpkgs/trunk/; revision=5280
This commit is contained in:
Eelco Dolstra
2006-05-07 21:58:31 +00:00
parent c63f4278c7
commit 405d314395
4 changed files with 30 additions and 14 deletions
@@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, glib, zlib}:
stdenv.mkDerivation {
name = "gmime-2.2.1";
src = fetchurl {
url = http://spruce.sourceforge.net/gmime/sources/v2.2/gmime-2.2.1.tar.gz;
md5 = "b05e4d6344c8465fb74386e5f1fed45c";
};
buildInputs = [pkgconfig glib zlib];
}