1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 12:02:47 +00:00
nixpkgs/pkgs/development/libraries/ptex/default.nix

34 lines
789 B
Nix
Raw Normal View History

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