1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 14:48:39 +03:00
nix-ros-overlay/dashing/ompl/default.nix

26 lines
770 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, boost, pkg-config, eigen }:
buildRosPackage {
pname = "ros-dashing-ompl";
version = "1.4.2-r2";
src = fetchurl {
url = "https://github.com/ros-gbp/ompl-release/archive/release/dashing/ompl/1.4.2-2.tar.gz";
name = "1.4.2-2.tar.gz";
sha256 = "06cd4af5ccb402f03a41db9d063451a4500bea982933d2f5b23fd514ff47b08e";
};
buildType = "cmake";
buildInputs = [ cmake boost pkg-config eigen ];
propagatedBuildInputs = [ boost eigen ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''OMPL is a free sampling-based motion planning library.'';
license = with lib.licenses; [ bsdOriginal ];
};
}