nixpkgs/pkgs/development/libraries/jbig2dec/default.nix
Martin Milata d1dcd310dd jbig2dec: 0.17 -> 0.18
Fixes https://nvd.nist.gov/vuln/detail/CVE-2020-12268

autoreconfHook was added because the build was failing on missing
install-sh.
2020-06-04 18:27:53 +02:00

28 lines
704 B
Nix

{ stdenv, fetchurl, python3, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "jbig2dec";
version = "0.18";
src = fetchurl {
url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs952/${pname}-${version}.tar.gz";
sha256 = "0pigfw2v0ppvr0lbysm69gx0zsa5q2q92yrb8af2j3im6x97f6cy";
};
postPatch = ''
patchShebangs test_jbig2dec.py
'';
buildInputs = [ autoreconfHook ];
checkInputs = [ python3 ];
doCheck = true;
meta = {
homepage = "https://www.jbig2dec.com/";
description = "Decoder implementation of the JBIG2 image compression format";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}