1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/dashing/ros2launch/default.nix
2019-12-09 23:36:28 -05:00

24 lines
913 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, launch, launch-ros, pythonPackages, ros2cli, ros2pkg }:
buildRosPackage {
pname = "ros-dashing-ros2launch";
version = "0.8.7-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/dashing/ros2launch/0.8.7-1.tar.gz";
name = "0.8.7-1.tar.gz";
sha256 = "4be10039d8d58089d589011c14583de306686c5c1b21123ca335283ac508a9d8";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ ament-index-python launch launch-ros ros2cli ros2pkg ];
meta = {
description = ''The launch command for ROS 2 command line tools.'';
license = with lib.licenses; [ asl20 ];
};
}