pbrt: init at 2016-05-19

This commit is contained in:
Julien Dehos 2016-05-22 00:33:19 +02:00
parent 7b56411fef
commit 294a776511
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{stdenv, fetchgit, flex, bison, cmake, git, zlib}:
stdenv.mkDerivation rec {
version = "2016-05-19";
name = "pbrt-v3-${version}";
src = fetchgit {
url = "https://github.com/mmp/pbrt-v3.git";
rev = "638249e5cf4596e129695c8df8525d43f11573ff";
sha256 = "10ykqrg4zcfb4sfsg3z793c6vld6b6g8bzfyk7ya3yvvc9sdlr5g";
};
fetchSubmodules = true;
buildInputs = [ git flex bison cmake zlib ];
meta = {
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 ];
priority = 10;
};
}

View File

@ -13665,6 +13665,8 @@ in
paraview = callPackage ../applications/graphics/paraview { };
pbrt = callPackage ../applications/graphics/pbrt { };
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
pencil = callPackage ../applications/graphics/pencil { };