about summary refs log tree commit diff
path: root/pkgs/development/libraries/libpointmatcher/default.nix
blob: 96e6dca965dc03d6f724a74e79099f16e0206d02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{stdenv, fetchFromGitHub, cmake, eigen, boost, libnabo}:

stdenv.mkDerivation rec {
  version = "2016-09-11";
  name = "libpointmatcher-${version}";

  src = fetchFromGitHub {
    owner = "ethz-asl";
    repo = "libpointmatcher";
    rev = "75044815d40ff934fe0bb7e05ed8bbf18c06493b";
    sha256 = "1s7ilvg3lhr1fq8sxw05ydmbd3kl46496jnyxprhnpgvpmvqsbzl";
  };

  buildInputs = [cmake eigen boost libnabo];

  enableParallelBuilding = true;

  cmakeFlags = "
    -DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3
  ";

  checkPhase = ''
  export LD_LIBRARY_PATH=$PWD
  ./utest/utest --path ../examples/data/
  '';
  doCheck = true;

  meta = with stdenv.lib; {
    inherit (src.meta) homepage;
    description = "An \"Iterative Closest Point\" library for 2-D/3-D mapping in robotic";
    license = licenses.bsd3;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ cryptix ];
  };
}