mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 19:24:50 +03:00
25 lines
868 B
Nix
25 lines
868 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, openssl, pythonPackages, roslib, rospy, rostest }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-async-web-server-cpp";
|
|
version = "0.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/gt-rail-release/async_web_server_cpp-release/archive/release/kinetic/async_web_server_cpp/0.0.3-0.tar.gz";
|
|
name = "0.0.3-0.tar.gz";
|
|
sha256 = "32d6fc632c8c80656899d314fae6ca57e3db01312e82b3735c9ee50bb3f996e7";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
checkInputs = [ roslib rospy rostest ];
|
|
propagatedBuildInputs = [ boost openssl pythonPackages.websocket_client ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Asynchronous Web/WebSocket Server in C++'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|