nixpkgs/pkgs/development/libraries/jasper/default.nix

30 lines
880 B
Nix
Raw Normal View History

2016-10-05 11:59:10 +01:00
{ stdenv, fetchurl, fetchpatch, libjpeg, autoreconfHook }:
stdenv.mkDerivation rec {
2016-11-16 13:36:51 +00:00
name = "jasper-1.900.28";
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";
};
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 ];
propagatedBuildInputs = [ libjpeg ];
configureFlags = "--enable-shared";
outputs = [ "bin" "dev" "out" "man" ];
enableParallelBuilding = true;
meta = {
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
description = "JPEG2000 Library";
platforms = stdenv.lib.platforms.unix;
};
}