1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-26 16:45:32 +03:00

regenerate all distros, Mon Jun 19 17:15:22 2023

This commit is contained in:
Ben Wolsieffer 2023-06-19 17:15:23 -04:00
parent 7a2b545ecb
commit 381164fc34
2124 changed files with 35727 additions and 4192 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, boost, launch-testing, openssl, python3Packages }:
buildRosPackage {
pname = "ros-iron-async-web-server-cpp";
version = "2.0.0-r5";
src = fetchurl {
url = "https://github.com/ros2-gbp/async_web_server_cpp-release/archive/release/iron/async_web_server_cpp/2.0.0-5.tar.gz";
name = "2.0.0-5.tar.gz";
sha256 = "7dc43c2ae793fb8e0e1865177c42372f7e1cc227eac7875ea9ddd5ce731a72e3";
};
buildType = "catkin";
buildInputs = [ ament-cmake-ros openssl ];
checkInputs = [ launch-testing python3Packages.websocket-client ];
propagatedBuildInputs = [ boost ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Asynchronous Web/WebSocket Server in C++'';
license = with lib.licenses; [ bsdOriginal ];
};
}