python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / typesetting / pdfgrep / default.nix
blob3c1fca9a7c90a6098edcdbc0a5ee2eac21b44391
1 { lib, stdenv, fetchurl, pkg-config, poppler, libgcrypt, pcre, asciidoc }:
3 stdenv.mkDerivation rec {
4   pname = "pdfgrep";
5   version = "2.1.2";
7   src = fetchurl {
8     url = "https://pdfgrep.org/download/${pname}-${version}.tar.gz";
9     sha256 = "1fia10djcxxl7n9jw2prargw4yzbykk6izig2443ycj9syhxrwqf";
10   };
12   postPatch = ''
13     for i in ./src/search.h ./src/pdfgrep.cc ./src/search.cc; do
14       substituteInPlace $i --replace '<cpp/' '<'
15     done
16   '';
18   nativeBuildInputs = [ pkg-config asciidoc ];
19   buildInputs = [ poppler libgcrypt pcre ];
21   meta = {
22     description = "Commandline utility to search text in PDF files";
23     homepage = "https://pdfgrep.org/";
24     license = lib.licenses.gpl2Plus;
25     maintainers = with lib.maintainers; [ qknight fpletz ];
26     platforms = with lib.platforms; unix;
27   };