lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 20 lines 452 B view raw
1{ stdenv, fetchurl, pkgconfig, glib, libgsf, libxml2, bzip2 }: 2 3stdenv.mkDerivation rec { 4 name = "libwpd-0.8.14"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libwpd/${name}.tar.gz"; 8 sha256 = "1syli6i5ma10cwzpa61a18pyjmianjwsf6pvmvzsh5md6yk4yx01"; 9 }; 10 11 patches = [ ./gcc-0.8.patch ]; 12 13 buildInputs = [ glib libgsf libxml2 ]; 14 15 nativeBuildInputs = [ pkgconfig bzip2 ]; 16 17 meta = { 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}