4e5c0e9f0e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openimageio/versions
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, boost
|
|
, cmake
|
|
, ilmbase
|
|
, libjpeg
|
|
, libpng
|
|
, libtiff
|
|
, opencolorio
|
|
, openexr
|
|
, robin-map
|
|
, unzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openimageio";
|
|
version = "2.0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenImageIO";
|
|
repo = "oiio";
|
|
rev = "Release-${version}";
|
|
sha256 = "17diyfk586hll54cl476kbhbcm3nihw6cb4bgjkjxxzxbd3wx839";
|
|
};
|
|
|
|
outputs = [ "bin" "out" "dev" "doc" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
unzip
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
ilmbase
|
|
libjpeg
|
|
libpng
|
|
libtiff
|
|
opencolorio
|
|
openexr
|
|
robin-map
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_PYTHON=OFF"
|
|
"-DUSE_QT=OFF"
|
|
# GNUInstallDirs
|
|
"-DCMAKE_INSTALL_BINDIR=${placeholder "bin"}/bin"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=${placeholder "dev"}/include"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib" # needs relative path for pkgconfig
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.openimageio.org;
|
|
description = "A library and tools for reading and writing images";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ goibhniu jtojnar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|