7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, cairo
|
|
, expat
|
|
, ffmpeg
|
|
, libexif
|
|
, pango
|
|
, pkg-config
|
|
, wxGTK
|
|
, darwin
|
|
}:
|
|
|
|
let
|
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "wxSVG";
|
|
version = "1.5.25";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/wxsvg-${version}.tar.bz2";
|
|
hash = "sha256-W/asaDG1S9Ga70jN6PoFctu2PzCu6dUyP2vms/MmU0s=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Apply upstream patch for gcc-13 support:
|
|
# https://sourceforge.net/p/wxsvg/git/ci/7b17fe365fb522618fb3520d7c5c1109b138358f/
|
|
sed -i src/cairo/SVGCanvasCairo.cpp -e '1i #include <cstdint>'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
expat
|
|
ffmpeg
|
|
libexif
|
|
pango
|
|
wxGTK
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin Cocoa;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wxsvg.sourceforge.net/";
|
|
description = "SVG manipulation library built with wxWidgets";
|
|
mainProgram = "svgview";
|
|
longDescription = ''
|
|
wxSVG is C++ library to create, manipulate and render Scalable Vector
|
|
Graphics (SVG) files with the wxWidgets toolkit.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
inherit (wxGTK.meta) platforms;
|
|
};
|
|
}
|