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

35 lines
808 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, libjpeg, cmake }:
stdenv.mkDerivation rec {
name = "jasper-${version}";
2017-11-10 21:47:21 +01:00
version = "2.0.14";
src = fetchFromGitHub {
repo = "jasper";
owner = "mdadams";
rev = "version-${version}";
2017-11-10 21:47:21 +01:00
sha256 = "0aarg8nbik9wrm7fx0451sbm5ypfdfr6i169pxzi354mpdp8gg7f";
};
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 ];
propagatedBuildInputs = [ libjpeg ];
configureFlags = "--enable-shared";
outputs = [ "bin" "dev" "out" "man" ];
enableParallelBuilding = true;
2016-12-14 13:38:51 +01:00
postInstall = ''
moveToOutput bin "$bin"
'';
2017-03-25 21:10:32 +01:00
meta = with stdenv.lib; {
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
description = "JPEG2000 Library";
2017-03-25 21:10:32 +01:00
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}