mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #15609 from juliendehos/pbrt
pbrt: init at 2016-05-19
This commit is contained in:
commit
f553ecdaa6
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;
|
||||
};
|
||||
}
|
|
@ -13667,6 +13667,8 @@ in
|
|||
|
||||
paraview = callPackage ../applications/graphics/paraview { };
|
||||
|
||||
pbrt = callPackage ../applications/graphics/pbrt { };
|
||||
|
||||
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
|
||||
|
||||
pencil = callPackage ../applications/graphics/pencil { };
|
||||
|
|
Loading…
Reference in a new issue