mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
749 B
Nix
23 lines
749 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-index-python, launch, launch-ros, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-simple-launch";
|
|
version = "1.4.1-r1";
|
|
|
|
src = fetchurl {
|
|
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";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
propagatedBuildInputs = [ ament-index-python launch launch-ros xacro ];
|
|
|
|
meta = {
|
|
description = ''Python helper class for the ROS 2 launch system'';
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|