mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
982 B
Nix
25 lines
982 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-actionlib-msgs";
|
|
version = "0.8.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/eloquent/actionlib_msgs/0.8.1-1.tar.gz";
|
|
name = "0.8.1-1.tar.gz";
|
|
sha256 = "2aa862ebdf73000feef71f12ace234bade2cfeb6805cf80e1948f41d334e84ea";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-lint-common ];
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
meta = {
|
|
description = ''A package containing some message definitions used in the implementation of ROS 1 actions.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|