octomap: init at 1.9.6

This commit is contained in:
Ben Wolsieffer 2021-05-14 23:31:53 -04:00
parent d1601a40c4
commit cba07da6b1
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "octomap";
version = "1.9.6";
src = fetchFromGitHub {
owner = "OctoMap";
repo = pname;
rev = "v${version}";
sha256 = "03v341dffa0pfzmf2431xb5nq50zq9zlhgl6k2aa3fsza5xmbb70";
};
sourceRoot = "source/octomap";
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "A probabilistic, flexible, and compact 3D mapping library for robotic systems";
homepage = "https://octomap.github.io/";
license = licenses.bsd3;
maintainers = with maintainers; [ lopsided98 ];
platforms = platforms.unix;
};
}

View file

@ -20815,6 +20815,8 @@ in
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };
octomap = callPackage ../development/libraries/octomap { };
odp-dpdk = callPackage ../os-specific/linux/odp-dpdk { };
odroid-xu3-bootloader = callPackage ../tools/misc/odroid-xu3-bootloader { };