2017-03-05 15:38:18 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, pkgconfig, wxGTK
|
|
|
|
, ffmpeg, libexif
|
|
|
|
, cairo, pango }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wxSVG";
|
2017-03-05 15:38:18 +00:00
|
|
|
srcName = "wxsvg-${version}";
|
2019-10-09 01:42:27 +01:00
|
|
|
version = "1.5.21";
|
2017-03-05 15:38:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/${srcName}.tar.bz2";
|
2019-10-09 01:42:27 +01:00
|
|
|
sha256 = "0v368qgqad49saklwcbq76f1xkg126g0ll1jw9x2bdds02kvg1fw";
|
2017-03-05 15:38:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ wxGTK ffmpeg libexif ];
|
|
|
|
|
|
|
|
buildInputs = [ cairo pango ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A SVG manipulation library built with wxWidgets";
|
|
|
|
longDescription = ''
|
|
|
|
wxSVG is C++ library to create, manipulate and render
|
|
|
|
Scalable Vector Graphics (SVG) files with the wxWidgets toolkit.
|
|
|
|
'';
|
|
|
|
homepage = http://wxsvg.sourceforge.net/;
|
|
|
|
license = with licenses; gpl2;
|
|
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|