mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
26 lines
975 B
Nix
26 lines
975 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-autoware-adapi-version-msgs";
|
|
version = "1.3.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/autoware_adapi_msgs-release/archive/release/humble/autoware_adapi_version_msgs/1.3.0-1.tar.gz";
|
|
name = "1.3.0-1.tar.gz";
|
|
sha256 = "2263ea27d2cb2ba1e74e82761781e8839d54c09e75a00788ddde36f0f7f7578b";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-auto rosidl-default-generators ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
meta = {
|
|
description = "The Autoware AD API version interfaces";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|