2019-04-06 23:23:57 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-04-06 23:23:57 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, openssl, pythonPackages, roslib, rospy, rostest }:
|
2019-04-06 23:23:57 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-async-web-server-cpp";
|
|
|
|
version = "0.0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/gt-rail-release/async_web_server_cpp-release/archive/release/melodic/async_web_server_cpp/0.0.3-0.tar.gz";
|
|
|
|
name = "0.0.3-0.tar.gz";
|
2019-04-06 23:23:57 -04:00
|
|
|
sha256 = "45d13cce4a77b0e5e67b9ed7be20691e0425861c5a48a653d4a3bdff997840c6";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ roslib rospy rostest ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ boost openssl pythonPackages.websocket_client ];
|
2019-04-06 23:23:57 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Asynchronous Web/WebSocket Server in C++'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-04-06 23:23:57 -04:00
|
|
|
};
|
|
|
|
}
|