mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
25 lines
861 B
Nix
25 lines
861 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-copyright, ament-flake8, ament-pep257, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-neo-simulation2";
|
|
version = "1.0.0-r5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/neo_simulation2-release/archive/release/jazzy/neo_simulation2/1.0.0-5.tar.gz";
|
|
name = "1.0.0-5.tar.gz";
|
|
sha256 = "4bbb459c38d6e44d9fb31ece00dcb92880275b5923636dfcbd2cb7d5332b5f2d";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "ROS-2 Simulation packages for neobotix robots";
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|