nixpkgs/pkgs/development/libraries/vcg/default.nix
Matthew Daiter 093130f802 openmvs: init at current master (#25672)
* openmvs: init at current master

* openmvs: simplify expression

* openmvs: init at unstable-2017-05-01
2017-05-12 20:07:11 +01:00

30 lines
814 B
Nix

{ stdenv, fetchFromGitHub, eigen }:
stdenv.mkDerivation rec {
name = "vcg-${version}";
version = "1.0.1";
src = fetchFromGitHub {
owner = "cnr-isti-vclab";
repo = "vcglib";
rev = "v${version}";
sha256 = "0jh8jc8rn7rci8qr3q03q574fk2hsc3rllysck41j8xkr3rmxz2f";
};
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 stdenv.lib; {
homepage = "http://vcg.isti.cnr.it/vcglib/install.html";
description = "C++ library for manipulation, processing and displaying with OpenGL of triangle and tetrahedral meshes";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}