2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, rosidl-default-generators, rosidl-default-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-example-interfaces";
|
2021-03-19 13:19:05 +00:00
|
|
|
version = "0.9.1-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-19 13:19:05 +00:00
|
|
|
url = "https://github.com/ros2-gbp/example_interfaces-release/archive/release/foxy/example_interfaces/0.9.1-1.tar.gz";
|
|
|
|
name = "0.9.1-1.tar.gz";
|
|
|
|
sha256 = "74a5cd21a531a90d5117d482943d18ad44f0b5b3679ec28a3331f32f660aa77d";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|