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