forked from mirrors/nixpkgs
pbrt: init at 2016-05-19
This commit is contained in:
parent
7b56411fef
commit
294a776511
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/graphics/pbrt/default.nix
Normal file
25
pkgs/applications/graphics/pbrt/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -13665,6 +13665,8 @@ in
|
||||||
|
|
||||||
paraview = callPackage ../applications/graphics/paraview { };
|
paraview = callPackage ../applications/graphics/paraview { };
|
||||||
|
|
||||||
|
pbrt = callPackage ../applications/graphics/pbrt { };
|
||||||
|
|
||||||
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
|
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
|
||||||
|
|
||||||
pencil = callPackage ../applications/graphics/pencil { };
|
pencil = callPackage ../applications/graphics/pencil { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue