1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-09 11:54:40 +03:00
nix-ros-overlay/dashing/rosauth/default.nix
2019-09-28 00:32:55 -04:00

26 lines
951 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, rosidl-default-generators, rclcpp, ament-cmake-ros, openssl, rosidl-default-runtime }:
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";
buildInputs = [ openssl rclcpp ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ rosidl-default-runtime rclcpp ];
nativeBuildInputs = [ rosidl-default-generators ament-cmake-ros ];
meta = {
description = ''Server Side tools for Authorization and Authentication of ROS Clients'';
license = with lib.licenses; [ bsdOriginal ];
};
}