1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/builtin-interfaces/default.nix
2022-06-11 13:21:09 -04:00

25 lines
945 B
Nix

# Copyright 2022 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.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/humble/builtin_interfaces/1.2.0-2.tar.gz";
name = "1.2.0-2.tar.gz";
sha256 = "4c932401f3c7cde977c48bc57bb893c08603cbd954d337b84f9469a1872178b7";
};
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 ];
};
}