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

34 lines
914 B
Nix
Raw Normal View History

2016-12-14 04:38:51 -08:00
{ stdenv, fetchurl, fetchpatch, libjpeg, cmake }:
stdenv.mkDerivation rec {
name = "jasper-2.0.10";
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";
sha256 = "1s022mfxyw8jw60fgyj60lbm9h6bc4nk2751b0in8qsjwcl59n2l";
};
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 ];
propagatedBuildInputs = [ libjpeg ];
configureFlags = "--enable-shared";
outputs = [ "bin" "dev" "out" "man" ];
enableParallelBuilding = true;
2016-12-14 04:38:51 -08:00
postInstall = ''
moveToOutput bin "$bin"
'';
meta = {
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
description = "JPEG2000 Library";
platforms = stdenv.lib.platforms.unix;
};
}