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/eloquent/can-msgs/default.nix
2020-01-17 21:21:17 -05:00

25 lines
914 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-eloquent-can-msgs";
version = "2.0.0-r1";
src = fetchurl {
url = "https://github.com/ros-industrial-release/ros_canopen-release/archive/release/eloquent/can_msgs/2.0.0-1.tar.gz";
name = "2.0.0-1.tar.gz";
sha256 = "9ea1231f801d14b9235e1dc6fa8b7825f4d1044878f3f67fb33119125a220901";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''CAN related message types.'';
license = with lib.licenses; [ bsdOriginal ];
};
}