mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
834 B
Nix
25 lines
834 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ds-dbw-can, ds-dbw-joystick-demo, ds-dbw-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-ds-dbw";
|
|
version = "2.2.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/DataspeedInc-release/dbw_ros-release/archive/release/jazzy/ds_dbw/2.2.3-1.tar.gz";
|
|
name = "2.2.3-1.tar.gz";
|
|
sha256 = "7b0c76cf1f66ec70c900ba1d6d51307f9315296dec79d01e0476b4019e9ceec2";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ ds-dbw-can ds-dbw-joystick-demo ds-dbw-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Interface to the Dataspeed Inc. Drive-By-Wire kits";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|