pbrt: 2016-05-19 -> 2017-01-12 (#23405)
This commit is contained in:
parent
54b7c3b63f
commit
14db0b9ef3
@ -1,25 +1,26 @@
|
||||
{stdenv, fetchgit, flex, bison, cmake, git, zlib}:
|
||||
{stdenv, fetchFromGitHub, flex, bison, cmake, git, zlib}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
version = "2016-05-19";
|
||||
version = "2017-01-12";
|
||||
name = "pbrt-v3-${version}";
|
||||
src = fetchgit {
|
||||
url = "https://github.com/mmp/pbrt-v3.git";
|
||||
rev = "638249e5cf4596e129695c8df8525d43f11573ff";
|
||||
sha256 = "10ykqrg4zcfb4sfsg3z793c6vld6b6g8bzfyk7ya3yvvc9sdlr5g";
|
||||
};
|
||||
|
||||
fetchSubmodules = true;
|
||||
src = fetchFromGitHub {
|
||||
rev = "35b6da3429526f2026fe5e5ebaf36d593e113028";
|
||||
owner = "mmp";
|
||||
repo = "pbrt-v3";
|
||||
sha256 = "10lvbph13p6ilzqb8sgrvn9gg1zmi8wpy3hhjbqp8dnsa4x0mhj7";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
buildInputs = [ git flex bison cmake zlib ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://pbrt.org";
|
||||
description = "The renderer described in the third edition of the book 'Physically Based Rendering: From Theory To Implementation'";
|
||||
platforms = stdenv.lib.platforms.linux ;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
maintainers = [ stdenv.lib.maintainers.juliendehos ];
|
||||
platforms = platforms.linux ;
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.juliendehos ];
|
||||
priority = 10;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user