1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/ros2-socketcan-msgs/default.nix

27 lines
961 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-rolling-ros2-socketcan-msgs";
version = "1.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_socketcan-release/archive/release/rolling/ros2_socketcan_msgs/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "45b72ebdb3faf8b6bfe9f5c54c11731a27f994770403d6fc45d8f5e44f37c71d";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto rosidl-default-generators ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = ''Messages for SocketCAN'';
license = with lib.licenses; [ asl20 ];
};
}