nix-ros-overlay/distros/humble/builtin-interfaces/default.nix

26 lines
1,002 B
Nix

# Copyright 2025 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-humble-builtin-interfaces";
version = "1.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/humble/builtin_interfaces/1.2.1-1.tar.gz";
name = "1.2.1-1.tar.gz";
sha256 = "6a8740f732b02d53d95e25d7bf48881f4492021b4e69f0ef0558510ef2cb5399";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
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 ];
};
}