openimagedenoise: 1.2.2 -> 1.3.0
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.
This commit is contained in:
parent
24d04bc192
commit
0e31f60cad
23
pkgs/development/libraries/openimagedenoise/1_2_x.nix
Normal file
23
pkgs/development/libraries/openimagedenoise/1_2_x.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1,16 +1,16 @@
|
|||||||
{ lib, stdenv, fetchzip, cmake, tbb, python, ispc }:
|
{ lib, stdenv, fetchzip, cmake, tbb, python3, ispc }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "openimagedenoise";
|
pname = "openimagedenoise";
|
||||||
version = "1.2.2";
|
version = "1.3.0";
|
||||||
|
|
||||||
# The release tarballs include pretrained weights, which would otherwise need to be fetched with git-lfs
|
# The release tarballs include pretrained weights, which would otherwise need to be fetched with git-lfs
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://github.com/OpenImageDenoise/oidn/releases/download/v${version}/oidn-${version}.src.tar.gz";
|
url = "https://github.com/OpenImageDenoise/oidn/releases/download/v${version}/oidn-${version}.src.tar.gz";
|
||||||
sha256 = "0wyaarjxkzlvljmpnr7qm06ma2wl1aik3z664gwpzhizswygk6yp";
|
sha256 = "sha256-ls0F2D5pC+wqhQn1Zh8m8Q/KoK7rAkhKatTY9k+letQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake python ispc ];
|
nativeBuildInputs = [ cmake python3 ispc ];
|
||||||
buildInputs = [ tbb ];
|
buildInputs = [ tbb ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -6346,7 +6346,9 @@ in
|
|||||||
|
|
||||||
lzip = callPackage ../tools/compression/lzip { };
|
lzip = callPackage ../tools/compression/lzip { };
|
||||||
|
|
||||||
luxcorerender = callPackage ../tools/graphics/luxcorerender { };
|
luxcorerender = callPackage ../tools/graphics/luxcorerender {
|
||||||
|
openimagedenoise = openimagedenoise_1_2_x;
|
||||||
|
};
|
||||||
|
|
||||||
xz = callPackage ../tools/compression/xz { };
|
xz = callPackage ../tools/compression/xz { };
|
||||||
|
|
||||||
@ -7047,6 +7049,8 @@ in
|
|||||||
|
|
||||||
openimagedenoise = callPackage ../development/libraries/openimagedenoise { };
|
openimagedenoise = callPackage ../development/libraries/openimagedenoise { };
|
||||||
|
|
||||||
|
openimagedenoise_1_2_x = callPackage ../development/libraries/openimagedenoise/1_2_x.nix { };
|
||||||
|
|
||||||
openmvg = callPackage ../applications/science/misc/openmvg { };
|
openmvg = callPackage ../applications/science/misc/openmvg { };
|
||||||
|
|
||||||
openmvs = callPackage ../applications/science/misc/openmvs { };
|
openmvs = callPackage ../applications/science/misc/openmvs { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user