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

30 lines
800 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, eigen }:
2016-02-17 12:53:15 +00:00
stdenv.mkDerivation rec {
pname = "vcg";
version = "1.0.1";
2016-02-17 12:53:15 +00:00
src = fetchFromGitHub {
owner = "cnr-isti-vclab";
repo = "vcglib";
rev = "v${version}";
sha256 = "0jh8jc8rn7rci8qr3q03q574fk2hsc3rllysck41j8xkr3rmxz2f";
2016-02-17 12:53:15 +00:00
};
propagatedBuildInputs = [ eigen ];
installPhase = ''
mkdir -p $out/include
cp -r vcg wrap $out/include
find $out -name \*.h -exec sed -i 's,<eigenlib/,<eigen3/,g' {} \;
'';
meta = with lib; {
homepage = "http://vcg.isti.cnr.it/vcglib/install.html";
2016-02-17 12:53:15 +00:00
description = "C++ library for manipulation, processing and displaying with OpenGL of triangle and tetrahedral meshes";
license = licenses.gpl3;
2021-03-10 11:00:27 +00:00
platforms = platforms.all;
2016-02-17 12:53:15 +00:00
maintainers = with maintainers; [ abbradar ];
};
}