2019-09-28 00:32:55 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, openssl, rclcpp, rosidl-default-generators, rosidl-default-runtime }:
|
2019-09-28 00:32:55 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-rosauth";
|
|
|
|
version = "2.0.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/rosauth-release/archive/release/dashing/rosauth/2.0.1-1.tar.gz";
|
|
|
|
name = "2.0.1-1.tar.gz";
|
|
|
|
sha256 = "755e63eed157721aee661d6fb133417c9826f82291b32fe875f72448fa0ca542";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ openssl ];
|
2019-09-28 00:32:55 -04:00
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ rclcpp rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros rosidl-default-generators ];
|
2019-09-28 00:32:55 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Server Side tools for Authorization and Authentication of ROS Clients'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|