aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/openimagedenoise/default.nix
blob: 5cecc33564e4e5aa94bc2eda17e52e8f561dc74a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub, cmake, tbb, python }:

stdenv.mkDerivation rec {
  pname = "openimagedenoise";
  version = "1.1.0";

  src = fetchFromGitHub {
    owner = "OpenImageDenoise";
    repo = "oidn";
    rev = "v${version}";
    sha256 = "032s7vablqnmrcc4xf2c94kwj0kbcd64bram10g0yc42fg0a3r9m";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [ cmake python ];
  buildInputs = [ tbb ];

  meta = with stdenv.lib; {
    homepage = "https://openimagedenoise.github.io";
    description = "High-Performance Denoising Library for Ray Tracing";
    license = licenses.asl20;
    maintainers = [ maintainers.leshainc ];
    platforms = platforms.unix;
  };
}