1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/foxy/urdf-tutorial/default.nix
2022-09-20 16:42:07 -04:00

26 lines
973 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, joint-state-publisher, joint-state-publisher-gui, robot-state-publisher, rviz2, xacro }:
buildRosPackage {
pname = "ros-foxy-urdf-tutorial";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/urdf_tutorial-release/archive/release/foxy/urdf_tutorial/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "90a070ae9db4203819d830f59f618fdb57146c1dcf26fc1d2d80674e23e35153";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ];
propagatedBuildInputs = [ joint-state-publisher joint-state-publisher-gui robot-state-publisher rviz2 xacro ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package contains a number of URDF tutorials.'';
license = with lib.licenses; [ bsdOriginal ];
};
}