2020-03-13 12:45:42 +00:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-cpp, boost, rclcpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-swri-system-util";
|
2020-07-17 13:18:57 +00:00
|
|
|
version = "3.3.0-r1";
|
2020-03-13 12:45:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-07-17 13:18:57 +00:00
|
|
|
url = "https://github.com/swri-robotics-gbp/marti_common-release/archive/release/eloquent/swri_system_util/3.3.0-1.tar.gz";
|
|
|
|
name = "3.3.0-1.tar.gz";
|
|
|
|
sha256 = "3988bb10fb84db26c74e57e8f812d9dde6bff5daa9d22bf9ebdb93ea72fe78f4";
|
2020-03-13 12:45:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-index-cpp ];
|
|
|
|
propagatedBuildInputs = [ boost rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''swri_system_util'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|