2013-03-09 17:44:41 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2010-08-09 21:59:38 +01:00
|
|
|
|
2013-03-09 17:44:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2010-08-09 21:59:38 +01:00
|
|
|
name = "jbig2dec-0.11";
|
2013-03-09 17:44:41 +00:00
|
|
|
|
2010-08-09 21:59:38 +01:00
|
|
|
src = fetchurl {
|
2013-03-09 17:44:41 +00:00
|
|
|
url = "mirror://sourceforge/jbig2dec/${name}.tar.xz";
|
|
|
|
sha256 = "1xddc30garsg5j8p348cz5l8vn8j7723c0sykv0kc1w5ihaghsq1";
|
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 = {
|
|
|
|
homepage = http://jbig2dec.sourceforge.net/;
|
|
|
|
description = "Decoder implementation of the JBIG2 image compression format";
|
|
|
|
license = "GPLv2+";
|
|
|
|
};
|
|
|
|
}
|