mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
Diff: https://github.com/AcademySoftwareFoundation/MaterialX/compare/v1.39.4...v1.39.5 Changelog: https://github.com/AcademySoftwareFoundation/MaterialX/blob/v1.39.5/CHANGELOG.md
90 lines
2.2 KiB
Nix
90 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
libGL,
|
|
libx11,
|
|
libxt,
|
|
imath,
|
|
openimageio,
|
|
python3Packages,
|
|
pythonSupport ? false,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "materialx";
|
|
version = "1.39.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AcademySoftwareFoundation";
|
|
repo = "MaterialX";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-7aY1SI5b5hVjvTtucQh6XpkwkhPZWDhsTVYLKM667/k=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
]
|
|
++ lib.optional pythonSupport python3Packages.python
|
|
++ lib.optional (
|
|
pythonSupport && stdenv.buildPlatform == stdenv.hostPlatform
|
|
) python3Packages.pythonImportsCheckHook;
|
|
|
|
buildInputs = [
|
|
imath
|
|
openimageio
|
|
libGL
|
|
];
|
|
|
|
# create meta package providing dist-info for python3Packages.materialx
|
|
propagatedBuildInputs =
|
|
lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
|
libx11
|
|
libxt
|
|
]
|
|
++ lib.optionals pythonSupport [
|
|
(python3Packages.mkPythonMetaPackage {
|
|
inherit (finalAttrs) pname version meta;
|
|
})
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "MATERIALX_BUILD_OIIO" true)
|
|
(lib.cmakeBool "MATERIALX_BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
|
|
(lib.cmakeBool "MATERIALX_BUILD_PYTHON" pythonSupport)
|
|
(lib.cmakeBool "MATERIALX_BUILD_GEN_MSL" true)
|
|
];
|
|
|
|
pythonImportsCheck = [ "MaterialX" ];
|
|
|
|
postInstall = lib.optionalString pythonSupport ''
|
|
# Make python lib properly accessible
|
|
target_dir=$out/${python3Packages.python.sitePackages}
|
|
mkdir -p $(dirname $target_dir)
|
|
# required for cmake to find the bindings, when included in other projects
|
|
ln -s $out/python $target_dir
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
cmake-config = testers.hasCmakeConfigModules {
|
|
moduleNames = [ "MaterialX" ];
|
|
package = finalAttrs.finalPackage;
|
|
};
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/AcademySoftwareFoundation/MaterialX/blob/v${finalAttrs.version}/CHANGELOG.md";
|
|
description = "Open standard for representing rich material and look-development content in computer graphics";
|
|
homepage = "https://materialx.org";
|
|
maintainers = with lib.maintainers; [ gador ];
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.asl20;
|
|
};
|
|
})
|