about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/wxSVG
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/wxSVG')
-rw-r--r--nixpkgs/pkgs/development/libraries/wxSVG/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/wxSVG/default.nix b/nixpkgs/pkgs/development/libraries/wxSVG/default.nix
new file mode 100644
index 000000000000..f83f7e408977
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/wxSVG/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, stdenv
+, fetchurl
+, cairo
+, ffmpeg
+, libexif
+, pango
+, pkg-config
+, wxGTK
+}:
+
+stdenv.mkDerivation rec {
+  pname = "wxSVG";
+  version = "1.5.22";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/wxsvg-${version}.tar.bz2";
+    hash = "sha256-DeFozZ8MzTCbhkDBtuifKpBpg7wS7+dbDFzTDx6v9Sk=";
+  };
+
+  nativeBuildInputs = [
+    pkg-config
+  ];
+  buildInputs = [
+    cairo
+    ffmpeg
+    libexif
+    pango
+    wxGTK
+  ];
+
+  meta = with lib; {
+    homepage = "http://wxsvg.sourceforge.net/";
+    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.
+    '';
+    license = with licenses; gpl2Plus;
+    maintainers = with maintainers; [ AndersonTorres ];
+    platforms = wxGTK.meta.platforms;
+  };
+}