2020-12-11 13:16:21 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-12-11 13:16:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-10-08 13:26:21 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-index-python, launch, launch-ros, xacro }:
|
2020-12-11 13:16:21 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-simple-launch";
|
2022-06-09 18:50:37 -04:00
|
|
|
version = "1.4.1-r1";
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-06-09 18:50:37 -04:00
|
|
|
url = "https://github.com/oKermorgant/simple_launch-release/archive/release/foxy/simple_launch/1.4.1-1.tar.gz";
|
|
|
|
name = "1.4.1-1.tar.gz";
|
|
|
|
sha256 = "d42d38532c922bf5bd79d2c2c35416f35cc4eec1053432c9a9067ece0d553694";
|
2020-12-11 13:16:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2021-10-08 13:26:21 +00:00
|
|
|
propagatedBuildInputs = [ ament-index-python launch launch-ros xacro ];
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python helper class for the ROS 2 launch system'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|