4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
32 lines
858 B
Nix
32 lines
858 B
Nix
{lib, stdenv, fetchFromGitHub, flex, bison, cmake, git, zlib}:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "2018-08-15";
|
|
pname = "pbrt-v3";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "86b5821308088deea70b207bc8c22219d0103d65";
|
|
owner = "mmp";
|
|
repo = "pbrt-v3";
|
|
sha256 = "0f7ivsczba6zfk5f0bba1js6dcwf6w6jrkiby147qp1sx5k35cv8";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/mmp/pbrt-v3/issues/196
|
|
./openexr-cmake-3.12.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ flex bison cmake ];
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://pbrt.org";
|
|
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 ];
|
|
priority = 10;
|
|
};
|
|
}
|