1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/dummy-robot-bringup/default.nix

26 lines
1,022 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-index-python, ament-lint-auto, ament-lint-common, dummy-map-server, dummy-sensors, launch, launch-ros, robot-state-publisher, ros2run }:
buildRosPackage {
pname = "ros-dashing-dummy-robot-bringup";
version = "0.7.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/dummy_robot_bringup/0.7.9-1.tar.gz";
name = "0.7.9-1.tar.gz";
sha256 = "53176b4459f2fd92bbf56d248251ab120f3af45949a9cfbf69d17a6a9a604c54";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-index-python dummy-map-server dummy-sensors launch launch-ros robot-state-publisher ros2run ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''dummy robot bringup'';
license = with lib.licenses; [ asl20 ];
};
}