1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/canopen-utils/default.nix

25 lines
802 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-auto, canopen-interfaces, lifecycle-msgs, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-canopen-utils";
version = "0.3.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_canopen-release/archive/release/jazzy/canopen_utils/0.3.0-1.tar.gz";
name = "0.3.0-1.tar.gz";
sha256 = "1286e4369ca551c8cdf7555c151db943f90b2d45bdf0804afbd8011292651fab";
};
buildType = "ament_python";
checkInputs = [ ament-lint-auto ];
propagatedBuildInputs = [ canopen-interfaces lifecycle-msgs rclpy std-msgs ];
meta = {
description = "Utils for working with ros2_canopen.";
license = with lib.licenses; [ asl20 ];
};
}