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