2016-10-05 11:59:10 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, libjpeg, autoreconfHook }:
|
2009-03-20 16:27:32 +00:00
|
|
|
|
2008-01-28 19:41:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-11-16 13:36:51 +00:00
|
|
|
name = "jasper-1.900.28";
|
2008-01-28 19:41:03 +00:00
|
|
|
|
2009-03-20 16:27:32 +00:00
|
|
|
src = fetchurl {
|
2016-11-16 13:36:51 +00:00
|
|
|
# You can find this code on Github at https://github.com/mdadams/jasper
|
|
|
|
# however note at https://www.ece.uvic.ca/~frodo/jasper/#download
|
|
|
|
# not all tagged releases are for distribution.
|
2016-10-05 11:59:10 +01:00
|
|
|
url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.tar.gz";
|
2016-11-16 13:36:51 +00:00
|
|
|
sha256 = "0nsiblsfpfa0dahsk6hw9cd18fp9c8sk1z5hdp19m33c0bf92ip9";
|
2009-03-20 16:27:32 +00:00
|
|
|
};
|
2008-01-28 19:41:03 +00:00
|
|
|
|
2015-10-03 13:37:07 +01:00
|
|
|
# newer reconf to recognize a multiout flag
|
2016-10-05 11:59:10 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2012-01-16 17:36:59 +00:00
|
|
|
propagatedBuildInputs = [ libjpeg ];
|
2009-04-22 08:05:09 +01:00
|
|
|
|
|
|
|
configureFlags = "--enable-shared";
|
2013-06-11 12:41:33 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
2013-06-11 12:41:33 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-03-20 16:27:32 +00:00
|
|
|
meta = {
|
2014-12-21 22:26:53 +00:00
|
|
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "JPEG2000 Library";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-03-20 16:27:32 +00:00
|
|
|
};
|
2008-01-28 19:41:03 +00:00
|
|
|
}
|