2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-swri-dbw-interface";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "3.3.2-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/foxy/swri_dbw_interface/3.3.2-1.tar.gz";
|
|
|
|
name = "3.3.2-1.tar.gz";
|
|
|
|
sha256 = "0f93f6fb73b91bc0b387ee73296ae30fa283afbaf6e8ddf95363f9ad8031d8a1";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|