mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-18 16:10:23 +03:00
25 lines
872 B
Nix
25 lines
872 B
Nix
![]() |
|
||
|
# Copyright 2021 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, rosidl-default-generators, rosidl-default-runtime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-galactic-example-interfaces";
|
||
|
version = "0.9.2-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/example_interfaces-release/archive/release/galactic/example_interfaces/0.9.2-2.tar.gz";
|
||
|
name = "0.9.2-2.tar.gz";
|
||
|
sha256 = "04e3ca352f50c4e8e66a9d51130977345f90e547937634125f92a34e16922716";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
propagatedBuildInputs = [ action-msgs rosidl-default-runtime ];
|
||
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Contains message and service definitions used by the examples.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|