linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / wxSVG / default.nix
blob5e7f7b71fbe55b42ffa74e6c76a2b364a0019858
1 { lib, stdenv, fetchurl
2 , pkg-config, wxGTK
3 , ffmpeg_3, libexif
4 , cairo, pango }:
6 stdenv.mkDerivation rec {
8   pname = "wxSVG";
9   srcName = "wxsvg-${version}";
10   version = "1.5.22";
12   src = fetchurl {
13     url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/${srcName}.tar.bz2";
14     sha256 = "0agmmwg0zlsw1idygvqjpj1nk41akzlbdha0hsdk1k8ckz6niq8d";
15   };
17   nativeBuildInputs = [ pkg-config ];
19   propagatedBuildInputs = [ wxGTK ffmpeg_3 libexif ];
21   buildInputs = [ cairo pango ];
23   meta = with lib; {
24     description = "A SVG manipulation library built with wxWidgets";
25     longDescription = ''
26     wxSVG is C++ library to create, manipulate and render
27     Scalable Vector Graphics (SVG) files with the wxWidgets toolkit.
28     '';
29     homepage = "http://wxsvg.sourceforge.net/";
30     license = with licenses; gpl2;
31     maintainers = with maintainers; [ AndersonTorres ];
32     platforms = with platforms; linux;
33   };