2021-04-13 19:44:15 +00:00
|
|
|
{ lib, stdenv, fetchzip, cmake, tbb, python3, ispc }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "openimagedenoise";
|
2021-08-18 13:19:15 +00:00
|
|
|
version = "1.4.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-06-15 15:56:04 +00:00
|
|
|
# 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";
|
2021-08-18 13:19:15 +00:00
|
|
|
sha256 = "sha256-TQ7cL0/6pnSTuW21DESA5I3S/C1BHStrWK9yaPoim6E=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-04-13 19:44:15 +00:00
|
|
|
nativeBuildInputs = [ cmake python3 ispc ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ tbb ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://openimagedenoise.github.io";
|
|
|
|
description = "High-Performance Denoising Library for Ray Tracing";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.leshainc ];
|
|
|
|
platforms = platforms.unix;
|
2021-06-28 23:13:55 +00:00
|
|
|
changelog = "https://github.com/OpenImageDenoise/oidn/blob/v${version}/CHANGELOG.md";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|