Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
716 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
fontconfig,
freetype,
libpng,
}:
stdenv.mkDerivation rec {
pname = "libemf2svg";
version = "1.1.0";
src = fetchFromGitHub {
owner = "kakwa";
repo = "libemf2svg";
rev = version;
sha256 = "04g6dp5xadszqjyjl162x26mfhhwinia65hbkl3mv70bs4an9898";
};
nativeBuildInputs = [ cmake ];
buildInputs = [
fontconfig
freetype
libpng
];
meta = with lib; {
description = "Microsoft EMF to SVG conversion library";
mainProgram = "emf2svg-conv";
homepage = "https://github.com/kakwa/libemf2svg";
maintainers = with maintainers; [ erdnaxe ];
license = licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
};
}