mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
24 lines
724 B
Nix
24 lines
724 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, rclcpp }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-swri-console-util";
|
|
version = "3.3.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/eloquent/swri_console_util/3.3.0-1.tar.gz";
|
|
name = "3.3.0-1.tar.gz";
|
|
sha256 = "e5511f26b1da8afc02de460a8a6fc0c8bf0522a0b504837b0474d372d06f15f7";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ rclcpp ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''swri_console_util'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|