mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
22 lines
760 B
Nix
22 lines
760 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin-pip, catkin }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-flask-reverse-proxy";
|
|
version = "0.2.0";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/pyros-dev/flask-reverse-proxy-rosrelease/archive/release/kinetic/flask_reverse_proxy/0.2.0-0.tar.gz;
|
|
sha256 = "c3f4fb621008261448d9396b6b2ac22a5fe02fd8c20adc5d1f83e3e7a09a5bc4";
|
|
};
|
|
|
|
buildInputs = [ catkin-pip ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''A Flask "extension" for applications in a reverse proxy not at the root. A complete rip off of http://flask.pocoo.org/snippets/35/.'';
|
|
#license = lib.licenses.MIT;
|
|
};
|
|
}
|