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

25 lines
724 B
Nix
Raw Normal View History

# 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.2.0-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/eloquent/swri_console_util/3.2.0-1.tar.gz";
name = "3.2.0-1.tar.gz";
sha256 = "fb300214d4e942ca600e802335223813dc92b075f9a3d0e880b73c7403ea87d9";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''swri_console_util'';
license = with lib.licenses; [ bsdOriginal ];
};
}