mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
0e31f60cad
Moved 1.2.2 to an extra file, as we still need it for luxcorerender to build. https://github.com/LuxCoreRender/LuxCore/pull/482#issuecomment-744343949 Also build with python3.
24 lines
776 B
Nix
24 lines
776 B
Nix
{ lib, stdenv, fetchzip, cmake, tbb, python3, ispc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openimagedenoise";
|
|
version = "1.2.2";
|
|
|
|
# The release tarballs include pretrained weights, which would otherwise need to be fetched with git-lfs
|
|
src = fetchzip {
|
|
url = "https://github.com/OpenImageDenoise/oidn/releases/download/v${version}/oidn-${version}.src.tar.gz";
|
|
sha256 = "0wyaarjxkzlvljmpnr7qm06ma2wl1aik3z664gwpzhizswygk6yp";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake python3 ispc ];
|
|
buildInputs = [ tbb ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://openimagedenoise.github.io";
|
|
description = "High-Performance Denoising Library for Ray Tracing";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.leshainc ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|