mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
972 B
Nix
26 lines
972 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-lint-cmake, ament-lint-auto, irobot-create-control, urdf, xacro }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-irobot-create-description";
|
|
version = "3.0.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/create3_sim-release/archive/release/jazzy/irobot_create_description/3.0.4-1.tar.gz";
|
|
name = "3.0.4-1.tar.gz";
|
|
sha256 = "14113b7075cf9f4f971a481f387e1ee212542b1e247f31846fca73dade619aeb";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-lint-cmake ament-lint-auto ];
|
|
propagatedBuildInputs = [ irobot-create-control urdf xacro ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Provides the model description for the iRobot(R) Create(R) 3 Educational Robot.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|