about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/typesetting/pdfgrep/default.nix
blob: 3c1fca9a7c90a6098edcdbc0a5ee2eac21b44391 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, pkg-config, poppler, libgcrypt, pcre, asciidoc }:

stdenv.mkDerivation rec {
  pname = "pdfgrep";
  version = "2.1.2";

  src = fetchurl {
    url = "https://pdfgrep.org/download/${pname}-${version}.tar.gz";
    sha256 = "1fia10djcxxl7n9jw2prargw4yzbykk6izig2443ycj9syhxrwqf";
  };

  postPatch = ''
    for i in ./src/search.h ./src/pdfgrep.cc ./src/search.cc; do
      substituteInPlace $i --replace '<cpp/' '<'
    done
  '';

  nativeBuildInputs = [ pkg-config asciidoc ];
  buildInputs = [ poppler libgcrypt pcre ];

  meta = {
    description = "Commandline utility to search text in PDF files";
    homepage = "https://pdfgrep.org/";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ qknight fpletz ];
    platforms = with lib.platforms; unix;
  };
}