nix-ros-overlay/distros/foxy/swri-dbw-interface/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

25 lines
777 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake }:
buildRosPackage {
pname = "ros-foxy-swri-dbw-interface";
version = "3.5.2-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/foxy/swri_dbw_interface/3.5.2-3.tar.gz";
name = "3.5.2-3.tar.gz";
sha256 = "ee6767bddaa94324703a8f3d876656a24fb09742aea23c055ad53aec9fbf5717";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}