depot/third_party/nixpkgs/pkgs/development/libraries/qpdf/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

32 lines
823 B
Nix

{ lib, stdenv, fetchFromGitHub, libjpeg, zlib, perl }:
stdenv.mkDerivation rec {
pname = "qpdf";
version = "10.4.0";
src = fetchFromGitHub {
owner = "qpdf";
repo = "qpdf";
rev = "release-qpdf-${version}";
sha256 = "sha256-IYXH1Pcd0eRzlbRouAB17wsCUGNuIlJfwJLbXiaC5dk=";
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib libjpeg ];
preCheck = ''
patchShebangs qtest/bin/qtest-driver
'';
doCheck = true;
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://qpdf.sourceforge.net/";
description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
maintainers = with maintainers; [ abbradar ];
platforms = platforms.all;
};
}