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
39 lines
845 B
Nix
39 lines
845 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
poppler,
|
|
fetchpatch,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pdftoipe";
|
|
version = "7.2.29.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "otfried";
|
|
repo = "ipe-tools";
|
|
rev = "v${version}";
|
|
hash = "sha256-6FI0ZLRrDmNFAKyht7hB94MsCy+TasD6Mb/rx6sdCdg=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/pdftoipe";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ poppler ];
|
|
|
|
installPhase = ''
|
|
install -D pdftoipe $out/bin/pdftoipe
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Program that tries to convert arbitrary PDF documents to Ipe files";
|
|
homepage = "https://github.com/otfried/ipe-tools";
|
|
changelog = "https://github.com/otfried/ipe-tools/releases";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ yrd ];
|
|
mainProgram = "pdftoipe";
|
|
};
|
|
}
|