4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
46 lines
962 B
Nix
46 lines
962 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, libjpeg
|
|
, libtiff
|
|
, librsvg
|
|
, libiconv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "djvulibre";
|
|
version = "3.5.27";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/djvu/${pname}-${version}.tar.gz";
|
|
sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6";
|
|
};
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
|
|
buildInputs = [
|
|
libjpeg
|
|
libtiff
|
|
librsvg
|
|
libiconv
|
|
];
|
|
|
|
patches = [
|
|
./CVE-2019-18804.patch
|
|
# This one is needed to make the following
|
|
# two CVE patches apply cleanly
|
|
./fix_hongfuzz_crash.patch
|
|
./CVE-2019-15142.patch
|
|
./CVE-2019-15143.patch
|
|
./CVE-2019-15144.patch
|
|
./CVE-2019-15145.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "The big set of CLI tools to make/modify/optimize/show/export DJVU files";
|
|
homepage = "http://djvu.sourceforge.net";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ Anton-Latukha ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|