Skip to content

Commit

Permalink
pbrt: 2016-05-19 -> 2017-01-12 (#23405)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliendehos authored and joachifm committed Mar 13, 2017
1 parent 54b7c3b commit 14db0b9
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions pkgs/applications/graphics/pbrt/default.nix
@@ -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;
};
}

0 comments on commit 14db0b9

Please sign in to comment.