lol
0
fork

Configure Feed

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

at 17.09-beta 28 lines 904 B view raw
1{ stdenv, fetchurl, fetchpatch, zlib, imagemagick, libpng, pkgconfig, glib 2, freetype, libjpeg, libxml2 }: 3 4stdenv.mkDerivation { 5 name = "libwmf-0.2.8.4"; 6 7 src = fetchurl { 8 url = mirror://sourceforge/wvware/libwmf-0.2.8.4.tar.gz; 9 sha256 = "1y3wba4q8pl7kr51212jwrsz1x6nslsx1gsjml1x0i8549lmqd2v"; 10 }; 11 12 buildInputs = [ zlib imagemagick libpng pkgconfig glib freetype libjpeg libxml2 ]; 13 14 patches = [ 15 ./CVE-2006-3376.patch ./CVE-2009-1364.patch 16 ./CVE-2015-0848+4588+4695+4696.patch 17 (fetchpatch { 18 name = "libwmf-0.2.8.4-CVE-2016-9011-debian.patch"; 19 url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=842090;filename=libwmf-0.2.8.4-CVE-2016-9011-debian.patch;msg=10"; 20 sha256 = "15vnqrj1dlvn0g8ccrxj2r2cyb1rv0qf0kfangxfgsi5h8is0c2b"; 21 }) 22 ]; 23 24 meta = { 25 description = "WMF library from wvWare"; 26 platforms = stdenv.lib.platforms.unix; 27 }; 28}