2020-06-12 18:02:43 -04:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-builtin-interfaces";
|
|
|
|
version = "1.0.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/foxy/builtin_interfaces/1.0.0-1.tar.gz";
|
|
|
|
name = "1.0.0-1.tar.gz";
|
|
|
|
sha256 = "cfca8040d1beb9a6cb122334cde383ff5f513d0e44ee0c8d21ce4c6a2614c0c1";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A package containing message and service definitions for types defined in the OMG IDL Platform Specific Model.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|