1 { lib, stdenv, fetchurl
6 stdenv.mkDerivation rec {
9 srcName = "wxsvg-${version}";
13 url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/${srcName}.tar.bz2";
14 sha256 = "0agmmwg0zlsw1idygvqjpj1nk41akzlbdha0hsdk1k8ckz6niq8d";
17 nativeBuildInputs = [ pkg-config ];
19 propagatedBuildInputs = [ wxGTK ffmpeg_3 libexif ];
21 buildInputs = [ cairo pango ];
24 description = "A SVG manipulation library built with wxWidgets";
26 wxSVG is C++ library to create, manipulate and render
27 Scalable Vector Graphics (SVG) files with the wxWidgets toolkit.
29 homepage = "http://wxsvg.sourceforge.net/";
30 license = with licenses; gpl2;
31 maintainers = with maintainers; [ AndersonTorres ];
32 platforms = with platforms; linux;