crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / graphics / pdftoipe / default.nix
blob763a1366801e9d2b1f8369955ec4a00e613cb003
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , pkg-config
5 , poppler
6 , fetchpatch
7 }:
9 stdenv.mkDerivation rec {
10   pname = "pdftoipe";
11   version = "7.2.24.1";
13   src = fetchFromGitHub {
14     owner = "otfried";
15     repo = "ipe-tools";
16     rev = "v${version}";
17     sha256 = "jlrjrjzZQo79CKMySayhCm1dqLh89wOQuXrXa2aqc0k=";
18   };
20   patches = [
21     # Fix build with poppler > 22.03.0
22     # https://github.com/otfried/ipe-tools/pull/48
23     (fetchpatch {
24       url = "https://github.com/otfried/ipe-tools/commit/14335180432152ad094300d0afd00d8e390469b2.patch";
25       sha256 = "sha256-V3FmwG3bR6io/smxjasFJ5K0/u8RSFfdUX41ClGXhFc=";
26       stripLen = 1;
27       name = "poppler_fix_build.patch";
28     })
29   ];
31   sourceRoot = "source/pdftoipe";
33   nativeBuildInputs = [ pkg-config ];
34   buildInputs = [ poppler ];
36   installPhase = ''
37     install -D pdftoipe $out/bin/pdftoipe
38   '';
40   meta = with lib; {
41     description = "A program that tries to convert arbitrary PDF documents to Ipe files";
42     homepage = "https://github.com/otfried/ipe-tools";
43     license = licenses.gpl3Plus;
44     maintainers = with maintainers; [ yrd ];
45   };