13 stdenv.mkDerivation rec {
14 pname = "libvisio2svg";
17 src = fetchFromGitHub {
21 sha256 = "14m37mmib1596c76j9w178jqhwxyih2sy5w5q9xglh8cmlfn1hfx";
24 nativeBuildInputs = [ cmake ];
25 buildInputs = [ libxml2 freetype librevenge libvisio libwmf libemf2svg ];
28 # file RPATH_CHANGE could not write new RPATH
29 "-DCMAKE_SKIP_BUILD_RPATH=ON"
33 description = "Library and tools to convert Microsoft Visio documents (VSS and VSD) to SVG";
34 homepage = "https://github.com/kakwa/libvisio2svg";
35 maintainers = with maintainers; [ erdnaxe ];
36 license = licenses.gpl2Only;
37 platforms = [ "x86_64-linux" ];