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
53 lines
978 B
Nix
53 lines
978 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
poppler,
|
|
libgcrypt,
|
|
pcre2,
|
|
asciidoc,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pdfgrep";
|
|
version = "2.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pdfgrep.org/download/${pname}-${version}.tar.gz";
|
|
hash = "sha256-BmHlMeTA7wl5Waocl3N5ZYXbOccshKAv+H0sNjfGIMs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
for i in ./src/search.h ./src/pdfgrep.cc ./src/search.cc; do
|
|
substituteInPlace $i --replace '<cpp/' '<'
|
|
done
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-libgcrypt-prefix=${lib.getDev libgcrypt}"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
asciidoc
|
|
];
|
|
buildInputs = [
|
|
poppler
|
|
libgcrypt
|
|
pcre2
|
|
];
|
|
|
|
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;
|
|
mainProgram = "pdfgrep";
|
|
};
|
|
}
|