nixpkgs/pkgs/tools/typesetting/pdfgrep/default.nix
R. RyanTM 67d5b90fac pdfgrep: 2.1.1 -> 2.1.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pdfgrep/versions
2018-12-14 20:49:55 -08:00

29 lines
823 B
Nix

{ stdenv, fetchurl, pkgconfig, poppler, libgcrypt, pcre, asciidoc }:
stdenv.mkDerivation rec {
name = "pdfgrep-${version}";
version = "2.1.2";
src = fetchurl {
url = "https://pdfgrep.org/download/${name}.tar.gz";
sha256 = "1fia10djcxxl7n9jw2prargw4yzbykk6izig2443ycj9syhxrwqf";
};
postPatch = ''
for i in ./src/search.h ./src/pdfgrep.cc ./src/search.cc; do
substituteInPlace $i --replace '<cpp/' '<'
done
'';
nativeBuildInputs = [ pkgconfig asciidoc ];
buildInputs = [ poppler libgcrypt pcre ];
meta = {
description = "Commandline utility to search text in PDF files";
homepage = https://pdfgrep.org/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ qknight fpletz ];
platforms = with stdenv.lib.platforms; linux;
};
}