mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 08:31:07 +03:00
27 lines
958 B
Nix
27 lines
958 B
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-action-tutorials-interfaces";
|
||
|
version = "0.33.3-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/action_tutorials_interfaces/0.33.3-1.tar.gz";
|
||
|
name = "0.33.3-1.tar.gz";
|
||
|
sha256 = "812276a06f90a6cf13d6909c2649919e5e6c34cbde0d4841493cfff2f79c802a";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
||
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Action tutorials action";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|