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

34 lines
920 B
Nix
Raw Normal View History

2016-12-14 12:38:51 +00:00
{ stdenv, fetchurl, fetchpatch, libjpeg, cmake }:
stdenv.mkDerivation rec {
2017-03-25 20:10:32 +00:00
name = "jasper-2.0.12";
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";
2017-03-25 20:10:32 +00:00
sha256 = "1njdbxv7d4anzrd476wjww2qsi96dd8vfnp4hri0srrqxpszl92v";
};
2015-10-03 13:37:07 +01:00
# newer reconf to recognize a multiout flag
2016-12-14 12:38:51 +00:00
nativeBuildInputs = [ cmake ];
propagatedBuildInputs = [ libjpeg ];
configureFlags = "--enable-shared";
outputs = [ "bin" "dev" "out" "man" ];
enableParallelBuilding = true;
2016-12-14 12:38:51 +00:00
postInstall = ''
moveToOutput bin "$bin"
'';
2017-03-25 20:10:32 +00:00
meta = with stdenv.lib; {
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
description = "JPEG2000 Library";
2017-03-25 20:10:32 +00:00
platforms = platforms.unix;
};
}