mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
libemf2svg: init at 1.1.0
This commit is contained in:
parent
14b0f20fa1
commit
89e61c9812
31
pkgs/development/libraries/libemf2svg/default.nix
Normal file
31
pkgs/development/libraries/libemf2svg/default.nix
Normal 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" ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user