mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-18 08:00:17 +03:00
25 lines
748 B
Nix
25 lines
748 B
Nix
![]() |
|
||
|
# Copyright 2022 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-humble-swri-dbw-interface";
|
||
|
version = "3.4.0-r3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/humble/swri_dbw_interface/3.4.0-3.tar.gz";
|
||
|
name = "3.4.0-3.tar.gz";
|
||
|
sha256 = "99d74039464d9eacf4ec80ed9dc79e3b86250b92ef11f1bc2e0762e382402dd4";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package provides documentation on common interface conventions for
|
||
|
drive-by-wire systems.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|