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