mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
regenerate all distros, Fri Dec 25 13:15:54 2020
This commit is contained in:
parent
c7a7bf6826
commit
1ed6d4405c
316 changed files with 3764 additions and 853 deletions
24
distros/melodic/can-dbc-parser/default.nix
Normal file
24
distros/melodic/can-dbc-parser/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
# Copyright 2020 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, catkin, roscpp }:
|
||||
buildRosPackage {
|
||||
pname = "ros-melodic-can-dbc-parser";
|
||||
version = "1.0.0-r2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/nobleo/raptor-dbw-ros-release/archive/release/melodic/can_dbc_parser/1.0.0-2.tar.gz";
|
||||
name = "1.0.0-2.tar.gz";
|
||||
sha256 = "40c930b51a258e6d0f984368edb32064279aeab2d8547b3d6f214d831be9d405";
|
||||
};
|
||||
|
||||
buildType = "catkin";
|
||||
propagatedBuildInputs = [ roscpp ];
|
||||
nativeBuildInputs = [ catkin ];
|
||||
|
||||
meta = {
|
||||
description = ''DBC file interface. Read a DBC file, unpack CAN messages and convert to engineering units, pack values into CAN messages for publishing.'';
|
||||
license = with lib.licenses; [ bsdOriginal ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue