mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-15 20:18:39 +03:00
23 lines
790 B
Nix
23 lines
790 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, webui, ros-apache2, image-stream, catkin, rosjson, pyclearsilver, web-msgs, rosweb, launchman }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-web-interface";
|
||
|
version = "1.0.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/UNR-RoboticsResearchLab/web_interface-release/archive/release/kinetic/web_interface/1.0.7-0.tar.gz;
|
||
|
sha256 = "0fb1478945c0504c45bec50ec2ac9ff88902b2453647f711f3b286236bd4caa4";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ webui rosweb rosjson pyclearsilver image-stream web-msgs ros-apache2 launchman ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The web_interface package'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|