nixpkgs/pkgs/development/libraries/qpdf/default.nix

33 lines
823 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libjpeg, zlib, perl }:
2014-11-05 02:28:33 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "qpdf";
2021-03-30 17:10:46 +00:00
version = "10.3.1";
2014-11-05 02:28:33 +00:00
src = fetchFromGitHub {
owner = "qpdf";
repo = "qpdf";
rev = "release-qpdf-${version}";
2021-03-30 17:10:46 +00:00
sha256 = "sha256-iZUJjr9e+d90XA8YEFFwyRR0HjgPgBi6V5gIpVQMcV8=";
2014-11-05 02:28:33 +00:00
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib libjpeg ];
2014-11-05 02:28:33 +00:00
preCheck = ''
patchShebangs qtest/bin/qtest-driver
2014-11-05 02:28:33 +00:00
'';
doCheck = true;
2016-01-13 16:07:42 +00:00
enableParallelBuilding = true;
2014-11-05 02:28:33 +00:00
meta = with lib; {
homepage = "http://qpdf.sourceforge.net/";
2014-11-05 02:28:33 +00:00
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 ];
2014-11-05 02:28:33 +00:00
platforms = platforms.all;
};
}