1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

add libwpd

svn path=/nixpkgs/trunk/; revision=4140
This commit is contained in:
Armijn Hemel 2005-10-26 12:51:33 +00:00
parent c077834783
commit 8518e36fd4

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, pkgconfig, glib, libgsf, libxml2}:
stdenv.mkDerivation {
name = "libwpd-0.8.3";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/libwpd/libwpd-0.8.3.tar.gz;
md5 = "f34404f8dc6123aca156d203c37e3e5d";
};
buildInputs = [pkgconfig glib libgsf libxml2];
}