mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
740 B
Nix
26 lines
740 B
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, rclcpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-foxy-swri-console-util";
|
||
|
version = "3.5.2-r3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/foxy/swri_console_util/3.5.2-3.tar.gz";
|
||
|
name = "3.5.2-3.tar.gz";
|
||
|
sha256 = "49981cf683e0dd4ba5b38c87718bd35c7e599b598d719dcee967f9c338a046d6";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ];
|
||
|
propagatedBuildInputs = [ rclcpp ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''swri_console_util'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|