2024-10-04 16:56:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-21 07:28:18 +00:00
|
|
|
pname = "jbigkit";
|
|
|
|
version = "2.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-21 07:28:18 +00:00
|
|
|
url = "https://www.cl.cam.ac.uk/~mgk25/jbigkit/download/${pname}-${version}.tar.gz";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "0cnrcdr1dwp7h7m0a56qw09bv08krb37mpf7cml5sjdgpyv0cwfy";
|
|
|
|
};
|
|
|
|
|
2024-10-04 16:56:33 +00:00
|
|
|
patches = [
|
|
|
|
# Archlinux patch: this helps users to reduce denial-of-service risks, as in CVE-2017-9937
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/raw/main/0013-new-jbig.c-limit-s-maxmem-maximum-decoded-image-size.patch";
|
|
|
|
hash = "sha256-Yq5qCTF7KZTrm4oeWbpctb+QLt3shJUGEReZvd0ey9k=";
|
|
|
|
})
|
|
|
|
# Archlinux patch: fix heap overflow
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.archlinux.org/archlinux/packaging/packages/jbigkit/-/raw/main/0015-jbg_newlen-check-for-end-of-file-within-MARKER_NEWLE.patch";
|
|
|
|
hash = "sha256-F3qA/btR9D9NfzrNY76X4Z6vG6NrisI36SjCDjS+F5s=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-10-07 09:15:18 +00:00
|
|
|
makeFlags = [
|
|
|
|
"CC=${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc"
|
2021-02-05 17:12:51 +00:00
|
|
|
"AR=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
|
|
|
|
"RANLIB=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ranlib"
|
2020-10-07 09:15:18 +00:00
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -i 's/^\(CFLAGS.*\)$/\1 -fPIC/' Makefile
|
2020-10-07 09:15:18 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
for f in Makefile libjbig/Makefile pbmtools/Makefile; do
|
2020-10-07 09:15:18 +00:00
|
|
|
sed -i -E 's/\bar /$(AR) /g;s/\branlib /$(RANLIB) /g' "$f"
|
2020-04-24 23:36:52 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-10-07 09:15:18 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
install -D -m644 libjbig/libjbig.a $out/lib/libjbig.a
|
|
|
|
install -D -m644 libjbig/libjbig85.a $out/lib/libjbig85.a
|
|
|
|
install -D -m644 libjbig/jbig.h $out/include/jbig.h
|
|
|
|
install -D -m644 libjbig/jbig_ar.h $out/include/jbig_ar.h
|
|
|
|
install -D -m644 libjbig/jbig85.h $out/include/jbig85.h
|
|
|
|
|
|
|
|
install -d -m755 $out/share/man/man1
|
|
|
|
install -m644 pbmtools/*.1* $out/share/man/man1
|
|
|
|
|
|
|
|
install -D -m755 pbmtools/jbgtopbm $out/bin/jbgtopbm
|
|
|
|
install -D -m755 pbmtools/pbmtojbg $out/bin/pbmtojbg
|
|
|
|
install -D -m755 pbmtools/jbgtopbm85 $out/bin/jbgtopbm85
|
|
|
|
install -D -m755 pbmtools/pbmtojbg85 $out/bin/pbmtojbg85
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://www.cl.cam.ac.uk/~mgk25/jbigkit/";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Software implementation of the JBIG1 data compression standard";
|
2020-10-07 09:15:18 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|