libvisio2svg: init at 0.5.5

This commit is contained in:
Alexandre Iooss 2021-08-19 16:53:27 +02:00
parent 89e61c9812
commit b3685e1fa7
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, freetype
, libemf2svg
, librevenge
, libvisio
, libwmf
, libxml2
}:
stdenv.mkDerivation rec {
pname = "libvisio2svg";
version = "0.5.5";
src = fetchFromGitHub {
owner = "kakwa";
repo = pname;
rev = version;
sha256 = "14m37mmib1596c76j9w178jqhwxyih2sy5w5q9xglh8cmlfn1hfx";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libxml2 freetype librevenge libvisio libwmf libemf2svg ];
meta = with lib; {
description = "Library and tools to convert Microsoft Visio documents (VSS and VSD) to SVG";
homepage = "https://github.com/kakwa/libvisio2svg";
maintainers = with maintainers; [ erdnaxe ];
license = licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
};
}

View File

@ -17485,6 +17485,8 @@ with pkgs;
libvisio = callPackage ../development/libraries/libvisio { };
libvisio2svg = callPackage ../development/libraries/libvisio2svg { };
libvisual = callPackage ../development/libraries/libvisual { };
libvmaf = callPackage ../development/libraries/libvmaf { };