nixpkgs/pkgs/applications/graphics/pbrt/default.nix

32 lines
860 B
Nix
Raw Normal View History

{stdenv, fetchFromGitHub, flex, bison, cmake, git, zlib}:
2016-05-21 23:33:19 +01:00
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
version = "2018-08-15";
pname = "pbrt-v3";
2016-05-21 23:33:19 +01:00
src = fetchFromGitHub {
rev = "86b5821308088deea70b207bc8c22219d0103d65";
owner = "mmp";
repo = "pbrt-v3";
sha256 = "0f7ivsczba6zfk5f0bba1js6dcwf6w6jrkiby147qp1sx5k35cv8";
fetchSubmodules = true;
};
2016-05-21 23:33:19 +01:00
patches = [
# https://github.com/mmp/pbrt-v3/issues/196
./openexr-cmake-3.12.patch
];
nativeBuildInputs = [ flex bison cmake ];
buildInputs = [ zlib ];
2016-05-21 23:33:19 +01:00
meta = with stdenv.lib; {
homepage = "http://pbrt.org";
2016-05-21 23:33:19 +01:00
description = "The renderer described in the third edition of the book 'Physically Based Rendering: From Theory To Implementation'";
platforms = platforms.linux;
license = licenses.bsd2;
maintainers = [ maintainers.juliendehos ];
2016-05-21 23:33:19 +01:00
priority = 10;
};
}