mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
25 lines
1.3 KiB
Nix
25 lines
1.3 KiB
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, clearpath-mecanum-drive-controller, controller-manager, diff-drive-controller, imu-filter-madgwick, interactive-marker-twist-server, joint-state-broadcaster, joint-trajectory-controller, joy-linux, robot-localization, robot-state-publisher, teleop-twist-joy, twist-mux }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-clearpath-control";
|
|
version = "0.3.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_control/0.3.2-1.tar.gz";
|
|
name = "0.3.2-1.tar.gz";
|
|
sha256 = "f1d5b172b5f45b537130ea68dcd7fce55d2627c64950d49ef5e35c4fdf5833c5";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ clearpath-mecanum-drive-controller controller-manager diff-drive-controller imu-filter-madgwick interactive-marker-twist-server joint-state-broadcaster joint-trajectory-controller joy-linux robot-localization robot-state-publisher teleop-twist-joy twist-mux ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Controllers for Clearpath Robotics platforms";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|