openimagedenoise: 1.3.0 -> 1.4.0

master
Daniel Nagy 2021-06-07 12:53:08 +02:00
parent 41387135dd
commit 4317137dc8
No known key found for this signature in database
GPG Key ID: 1B8E8DCB576FB671
1 changed files with 3 additions and 2 deletions

View File

@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "openimagedenoise";
version = "1.3.0";
version = "1.4.0";
# 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 = "sha256-ls0F2D5pC+wqhQn1Zh8m8Q/KoK7rAkhKatTY9k+letQ=";
sha256 = "sha256-UsiZT3ufRVo1BQ/md/A3CXpUfMPrJR1DhZg9hrjOG2A=";
};
nativeBuildInputs = [ cmake python3 ispc ];
@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
maintainers = [ maintainers.leshainc ];
platforms = platforms.unix;
changelog = "https://github.com/OpenImageDenoise/oidn/blob/v${version}/CHANGELOG.md";
};
}