libemf2svg: init at 1.1.0

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

View File

@ -0,0 +1,31 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, fontconfig
, freetype
, libpng
}:
stdenv.mkDerivation rec {
pname = "libemf2svg";
version = "1.1.0";
src = fetchFromGitHub {
owner = "kakwa";
repo = pname;
rev = version;
sha256 = "04g6dp5xadszqjyjl162x26mfhhwinia65hbkl3mv70bs4an9898";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ fontconfig freetype libpng ];
meta = with lib; {
description = "Microsoft EMF to SVG conversion library";
homepage = "https://github.com/kakwa/libemf2svg";
maintainers = with maintainers; [ erdnaxe ];
license = licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
};
}

View File

@ -16756,6 +16756,8 @@ with pkgs;
libechonest = callPackage ../development/libraries/libechonest { };
libemf2svg = callPackage ../development/libraries/libemf2svg { };
libev = callPackage ../development/libraries/libev { };
libevent = callPackage ../development/libraries/libevent { };