mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
25 lines
940 B
Nix
25 lines
940 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-lint-auto, ament-lint-common, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-controller-interface";
|
|
version = "0.10.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/foxy/controller_interface/0.10.0-1.tar.gz";
|
|
name = "0.10.0-1.tar.gz";
|
|
sha256 = "e3ceb6d42478d94b1ff812d3f3c310f5285603720e3717c7611817fc4e75fbd1";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle sensor-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Description of controller_interface'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|