nix-ros-overlay/distros/humble/fmi-adapter-examples/default.nix

25 lines
830 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, fmi-adapter, launch, launch-ros }:
buildRosPackage {
pname = "ros-humble-fmi-adapter-examples";
version = "2.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/fmi_adapter-release/archive/release/humble/fmi_adapter_examples/2.1.1-1.tar.gz";
name = "2.1.1-1.tar.gz";
sha256 = "df4eba1bb04e39feb92bfb457968f5c78b3781704e7da4c4cef1af7761c24c52";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ fmi-adapter launch launch-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Provides small examples for use of the fmi_adapter package";
license = with lib.licenses; [ asl20 ];
};
}