nixpkgs/pkgs/by-name/pb/pbrt/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
851 B
Nix
Raw Normal View History

2021-11-13 22:28:25 +00:00
{lib, stdenv, fetchFromGitHub, flex, bison, cmake, zlib}:
2016-05-21 22:33:19 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
version = "2018-08-15";
pname = "pbrt-v3";
2016-05-21 22:33:19 +00:00
src = fetchFromGitHub {
rev = "86b5821308088deea70b207bc8c22219d0103d65";
owner = "mmp";
repo = "pbrt-v3";
sha256 = "0f7ivsczba6zfk5f0bba1js6dcwf6w6jrkiby147qp1sx5k35cv8";
fetchSubmodules = true;
};
2016-05-21 22:33:19 +00:00
patches = [
# https://github.com/mmp/pbrt-v3/issues/196
./openexr-cmake-3.12.patch
];
nativeBuildInputs = [ flex bison cmake ];
buildInputs = [ zlib ];
2016-05-21 22:33:19 +00:00
meta = with lib; {
2021-12-31 18:50:21 +00:00
homepage = "https://pbrt.org/";
2016-05-21 22:33:19 +00:00
description = "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 22:33:19 +00:00
priority = 10;
};
}