Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
716 B
Nix
38 lines
716 B
Nix
{
|
|
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" ];
|
|
};
|
|
}
|