2017-02-06 18:08:04 -08:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2010-08-09 13:59:38 -07:00
|
|
|
|
2013-03-09 09:44:41 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2017-12-09 10:16:36 -08:00
|
|
|
name = "jbig2dec-0.14";
|
2013-03-09 09:44:41 -08:00
|
|
|
|
2010-08-09 13:59:38 -07:00
|
|
|
src = fetchurl {
|
2017-02-06 18:06:30 -08:00
|
|
|
url = "http://downloads.ghostscript.com/public/jbig2dec/${name}.tar.gz";
|
2017-12-09 10:16:36 -08:00
|
|
|
sha256 = "0k01hp0q4275fj4rbr1gy64svfraw5w7wvwl08yjhvsnpb1rid11";
|
2010-08-09 13:59:38 -07:00
|
|
|
};
|
2013-03-09 09:44:41 -08:00
|
|
|
|
2010-08-09 13:59:38 -07:00
|
|
|
meta = {
|
2017-02-06 18:06:30 -08:00
|
|
|
homepage = https://www.ghostscript.com/jbig2dec.html;
|
2010-08-09 13:59:38 -07:00
|
|
|
description = "Decoder implementation of the JBIG2 image compression format";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-08-09 13:59:38 -07:00
|
|
|
};
|
|
|
|
}
|