mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-27 17:05:34 +03:00
25 lines
949 B
Nix
25 lines
949 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# 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-eloquent-builtin-interfaces";
|
|
version = "0.8.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/eloquent/builtin_interfaces/0.8.0-1.tar.gz";
|
|
name = "0.8.0-1.tar.gz";
|
|
sha256 = "397dd47fde4f6bab25e221858a45058d86a7c84bfcb0e0cec157a223ed87a9da";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|