nixpkgs/pkgs/development/libraries/ptex/default.nix

35 lines
798 B
Nix
Raw Normal View History

2019-08-13 11:07:27 +02:00
{ stdenv, fetchFromGitHub, zlib, python, cmake, pkg-config }:
2017-09-17 21:51:15 +02:00
stdenv.mkDerivation rec
{
2019-08-13 11:07:27 +02:00
pname = "ptex";
version = "2.3.2";
2017-09-17 21:51:15 +02:00
src = fetchFromGitHub {
owner = "wdas";
repo = "ptex";
rev = "v${version}";
2019-08-13 11:07:27 +02:00
sha256 = "1c3pdqszn4y3d86qzng8b0hqdrchnl39adq5ab30wfnrgl2hnm4z";
2017-09-17 21:51:15 +02:00
};
outputs = [ "bin" "dev" "out" "lib" ];
2019-08-13 11:07:27 +02:00
buildInputs = [ zlib python cmake pkg-config ];
2017-09-17 21:51:15 +02:00
enableParallelBuilding = true;
2019-08-13 11:07:27 +02:00
# Can be removed in the next release
# https://github.com/wdas/ptex/pull/42
patchPhase = ''
echo v${version} >version
2017-09-17 21:51:15 +02:00
'';
meta = with stdenv.lib; {
description = "Per-Face Texture Mapping for Production Rendering";
homepage = "http://ptex.us/";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = [ maintainers.guibou ];
};
}