41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libpng, libtiff, lcms, cmake, glib/*passthru only*/ }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openjpeg-2.0.0";
|
|
passthru = {
|
|
incDir = "openjpeg-2.0";
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "http://openjpeg.googlecode.com/files/${name}.tar.gz";
|
|
sha1 = "0af78ab2283b43421458f80373422d8029a9f7a7";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
nativebuildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ libpng libtiff lcms ]; # in closure anyway
|
|
|
|
postInstall = glib.flattenInclude + ''
|
|
mkdir -p "$out/lib/pkgconfig"
|
|
cat >"$out/lib/pkgconfig/libopenjp2.pc" <<EOF
|
|
prefix=$out
|
|
libdir=$out/lib
|
|
includedir=$out/include
|
|
|
|
Name: openjp2
|
|
Description: JPEG2000 library (Part 1 and 2)
|
|
URL: http://www.openjpeg.org/
|
|
Version: @OPENJPEG_VERSION@
|
|
Libs: -L$out/lib -lopenjp2
|
|
Cflags: -I$out/include
|
|
EOF
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.openjpeg.org/;
|
|
description = "Open-source JPEG 2000 codec written in C language";
|
|
license = "BSD";
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|