mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, poppler
|
|
, fetchpatch
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pdftoipe";
|
|
version = "7.2.24.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "otfried";
|
|
repo = "ipe-tools";
|
|
rev = "v${version}";
|
|
sha256 = "jlrjrjzZQo79CKMySayhCm1dqLh89wOQuXrXa2aqc0k=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix build with poppler > 22.03.0
|
|
# https://github.com/otfried/ipe-tools/pull/48
|
|
(fetchpatch {
|
|
url = "https://github.com/otfried/ipe-tools/commit/14335180432152ad094300d0afd00d8e390469b2.patch";
|
|
sha256 = "sha256-V3FmwG3bR6io/smxjasFJ5K0/u8RSFfdUX41ClGXhFc=";
|
|
stripLen = 1;
|
|
name = "poppler_fix_build.patch";
|
|
})
|
|
];
|
|
|
|
sourceRoot = "source/pdftoipe";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ poppler ];
|
|
|
|
installPhase = ''
|
|
install -D pdftoipe $out/bin/pdftoipe
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A program that tries to convert arbitrary PDF documents to Ipe files";
|
|
homepage = "https://github.com/otfried/ipe-tools";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ yrd ];
|
|
};
|
|
}
|