mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
25 lines
858 B
Nix
25 lines
858 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, roslint, catkin, daemontools, rosunit, roslaunch, xacro }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-robot-upstart";
|
||
|
version = "0.3.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/clearpath-gbp/robot_upstart-release/archive/release/melodic/robot_upstart/0.3.0-0.tar.gz;
|
||
|
sha256 = "a275ce760e7a19ed7b1f120e6b1a3e3c1043f35c5b9bc116a0ba9ed8a633531e";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ rosunit roslint ];
|
||
|
propagatedBuildInputs = [ roslaunch daemontools xacro ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The robot_upstart package provides scripts which may be used to install
|
||
|
and uninstall Ubuntu Linux upstart jobs which launch groups of roslaunch files.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|