mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00

Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
25 lines
919 B
Nix
25 lines
919 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, joint-state-publisher, joint-state-publisher-gui, robot-state-publisher, roslaunch, rviz, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-noetic-urdf-tutorial";
|
|
version = "0.5.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/urdf_tutorial-release/archive/release/noetic/urdf_tutorial/0.5.0-2.tar.gz";
|
|
name = "0.5.0-2.tar.gz";
|
|
sha256 = "9bd0437ef9c76bd8493d9c3cdebad82bb9036a2d56fdce7c465b1673934b11ab";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ catkin roslaunch ];
|
|
propagatedBuildInputs = [ joint-state-publisher joint-state-publisher-gui robot-state-publisher rviz xacro ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = "This package contains a number of URDF tutorials.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|