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