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/dashing/rosauth/default.nix
2019-12-09 23:36:28 -05:00

26 lines
944 B
Nix

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