mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
874 B
Nix
24 lines
874 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, moveit-fake-controller-manager, moveit-ros-control-interface, moveit-simple-controller-manager }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-moveit-plugins";
|
|
version = "1.0.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/moveit-release/archive/release/melodic/moveit_plugins/1.0.8-1.tar.gz";
|
|
name = "1.0.8-1.tar.gz";
|
|
sha256 = "3ee18636379fb758cd402806886bf98ac39abaf23460e916fbd61c751dbacddd";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ moveit-fake-controller-manager moveit-ros-control-interface moveit-simple-controller-manager ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Metapackage for MoveIt! plugins.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|