Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 21 lines 604 B view raw
1{ stdenv, fetchurl, zlib, pkgconfig, glib, libgsf, libxml2, librevenge }: 2 3stdenv.mkDerivation rec { 4 name = "libwpd-0.10.0"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libwpd/${name}.tar.xz"; 8 sha256 = "0b6krzr6kxzm89g6bapn805kdayq70hn16n5b5wfs2lwrf0ag2wx"; 9 }; 10 11 buildInputs = [ glib libgsf libxml2 zlib librevenge ]; 12 13 nativeBuildInputs = [ pkgconfig ]; 14 15 meta = with stdenv.lib; { 16 description = "A library for importing and exporting WordPerfect documents"; 17 homepage = http://libwpd.sourceforge.net/; 18 license = licenses.lgpl21; 19 platforms = platforms.unix; 20 }; 21}