evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / mi / minidjvu / package.nix
blobc656eb84f75c7d718fe4c10a2279cf1d625c281a
1 { lib, stdenv, fetchurl, libtiff, gettext }:
3 stdenv.mkDerivation rec {
4   pname = "minidjvu";
5   version = "0.8";
7   src = fetchurl {
8     url = "mirror://sourceforge/minidjvu/minidjvu-${version}.tar.gz";
9     sha256 = "0jmpvy4g68k6xgplj9zsl6brg6vi81mx3nx2x9hfbr1f4zh95j79";
10   };
12   patchPhase = ''
13     sed -i s,/usr/bin/gzip,gzip, Makefile.in
14   '';
16   buildInputs = [ libtiff gettext ];
18   preInstall = ''
19     mkdir -p $out/lib
20   '';
22   meta = {
23     homepage = "https://djvu.sourceforge.net/djview4.html";
24     description = "Black-and-white djvu page encoder and decoder that use interpage information";
25     license = lib.licenses.gpl2Plus;
26     maintainers = [ ];
27     platforms = lib.platforms.unix;
28     mainProgram = "minidjvu";
29     knownVulnerabilities = [
30       "minidjvu is vulnerable to a number of out-of-bound read vulnerabilities, potentially causing denials of service (CVE-2017-12441, CVE-2017-12442, CVE-2017-12443, CVE-2017-12444, CVE-2017-12445)"
31     ];
32   };