lol
1{ stdenv, fetchurl, fetchpatch }:
2
3stdenv.mkDerivation rec {
4 name = "jbig2dec-0.14";
5
6 src = fetchurl {
7 url = "http://downloads.ghostscript.com/public/jbig2dec/${name}.tar.gz";
8 sha256 = "0k01hp0q4275fj4rbr1gy64svfraw5w7wvwl08yjhvsnpb1rid11";
9 };
10
11 meta = {
12 homepage = https://www.ghostscript.com/jbig2dec.html;
13 description = "Decoder implementation of the JBIG2 image compression format";
14 license = stdenv.lib.licenses.gpl2Plus;
15 platforms = stdenv.lib.platforms.unix;
16 };
17}