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