mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
759 B
Nix
24 lines
759 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-swri-dbw-interface";
|
|
version = "3.3.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/dashing/swri_dbw_interface/3.3.2-1.tar.gz";
|
|
name = "3.3.2-1.tar.gz";
|
|
sha256 = "6fcda08c47fe781f078ac9f51fe10a1902b4616960c3156ad5ce3adef7bfe375";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|