mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 10:44:50 +03:00
27 lines
1 KiB
Nix
27 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2025 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-humble-simulation-interfaces";
|
||
|
version = "1.0.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/simulation_interfaces-release/archive/release/humble/simulation_interfaces/1.0.0-1.tar.gz";
|
||
|
name = "1.0.0-1.tar.gz";
|
||
|
sha256 = "d49a71e9616dc2ca60fc4fc172504e4abc8d889aeadc0a913d0d61a21b58489c";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
checkInputs = [ ament-lint-common ];
|
||
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A package containing simulation interfaces including messages, services and actions";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|