fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, libwpd, zlib, librevenge }:
2
3stdenv.mkDerivation rec {
4 name = "libwpg-0.3.0";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/libwpg/${name}.tar.xz";
8 sha256 = "097jx8a638fwwfrzf6v29r1yhc34rq9526py7wf0ck2z4fcr2w3g";
9 };
10
11 buildInputs = [ libwpd zlib librevenge ];
12 nativeBuildInputs = [ pkgconfig ];
13
14 meta = {
15 homepage = http://libwpg.sourceforge.net;
16 description = "C++ library to parse WPG";
17 maintainers = [ stdenv.lib.maintainers.urkud ];
18 platforms = stdenv.lib.platforms.all;
19 };
20}