1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/iron/swri-console-util/default.nix

26 lines
740 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rclcpp }:
buildRosPackage {
pname = "ros-iron-swri-console-util";
version = "3.6.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/marti_common-release/archive/release/iron/swri_console_util/3.6.1-1.tar.gz";
name = "3.6.1-1.tar.gz";
sha256 = "c4db5c0bb2ec09dc4f82e33c272cf601b6404948349716820040dbb659ecfc07";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''swri_console_util'';
license = with lib.licenses; [ bsdOriginal ];
};
}