mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #18837 from cryptix/libnaboNlibpointmatcher
Add libnabo and libpointmatcher
This commit is contained in:
commit
f93c28ca69
4 changed files with 72 additions and 0 deletions
|
@ -97,6 +97,7 @@
|
|||
coroa = "Jonas Hörsch <jonas@chaoflow.net>";
|
||||
couchemar = "Andrey Pavlov <couchemar@yandex.ru>";
|
||||
cransom = "Casey Ransom <cransom@hubns.net>";
|
||||
cryptix = "Henry Bubert <cryptix@riseup.net>";
|
||||
CrystalGamma = "Jona Stubbe <nixos@crystalgamma.de>";
|
||||
cstrahan = "Charles Strahan <charles@cstrahan.com>";
|
||||
cwoac = "Oliver Matthews <oliver@codersoffortune.net>";
|
||||
|
|
32
pkgs/development/libraries/libnabo/default.nix
Normal file
32
pkgs/development/libraries/libnabo/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{stdenv, fetchFromGitHub, cmake, eigen, boost}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.6";
|
||||
name = "libnabo-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ethz-asl";
|
||||
repo = "libnabo";
|
||||
rev = version;
|
||||
sha256 = "1pg4vjfq5n7zhjdf7rgvycd7bkk1iwr50fl2dljq43airxz6525w";
|
||||
};
|
||||
|
||||
buildInputs = [cmake eigen boost];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
cmakeFlags = "
|
||||
-DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3
|
||||
";
|
||||
|
||||
doCheck = true;
|
||||
checkTarget = "test";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "A fast K Nearest Neighbor library for low-dimensional spaces";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cryptix ];
|
||||
};
|
||||
}
|
35
pkgs/development/libraries/libpointmatcher/default.nix
Normal file
35
pkgs/development/libraries/libpointmatcher/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -2478,6 +2478,10 @@ in
|
|||
|
||||
libmongo-client = callPackage ../development/libraries/libmongo-client { };
|
||||
|
||||
libnabo = callPackage ../development/libraries/libnabo { };
|
||||
|
||||
libpointmatcher = callPackage ../development/libraries/libpointmatcher { };
|
||||
|
||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||
|
||||
libmpack = callPackage ../development/libraries/libmpack { };
|
||||
|
|
Loading…
Reference in a new issue