2021-01-22 13:37:51 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-01-22 13:37:51 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, can-msgs, catkin, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-can-dbc-parser";
|
|
|
|
version = "1.0.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/nobleo/raptor-dbw-ros-release/archive/release/noetic/can_dbc_parser/1.0.0-1.tar.gz";
|
|
|
|
name = "1.0.0-1.tar.gz";
|
|
|
|
sha256 = "aaa9ba0d987a7a2ac39f8c714346a4dc0cce310ca3748b78a013ddb34bc54eff";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-01-22 13:37:51 +00:00
|
|
|
propagatedBuildInputs = [ can-msgs roscpp ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "DBC file interface. Read a DBC file, unpack CAN messages and convert to engineering units, pack values into CAN messages for publishing.";
|
2021-01-22 13:37:51 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|