1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/swri-dbw-interface/default.nix
2022-06-11 13:21:09 -04:00

24 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 ];
};
}