mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
983 B
Nix
26 lines
983 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-core-generators, rosidl-core-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-builtin-interfaces";
|
|
version = "1.6.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/iron/builtin_interfaces/1.6.0-2.tar.gz";
|
|
name = "1.6.0-2.tar.gz";
|
|
sha256 = "78236c0bdacdfe537b1705bab62c54b11a23510f08f7681f21e7674b8924807c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake rosidl-core-generators ];
|
|
checkInputs = [ ament-lint-common ];
|
|
propagatedBuildInputs = [ rosidl-core-runtime ];
|
|
nativeBuildInputs = [ ament-cmake rosidl-core-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 ];
|
|
};
|
|
}
|