1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/eloquent/fmi-adapter-examples/default.nix

25 lines
813 B
Nix
Raw Normal View History

# Copyright 2019 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-eloquent-fmi-adapter-examples";
version = "0.1.6-r1";
src = fetchurl {
url = "https://github.com/boschresearch/fmi_adapter_ros2-release/archive/release/eloquent/fmi_adapter_examples/0.1.6-1.tar.gz";
name = "0.1.6-1.tar.gz";
sha256 = "0f333698c39e374f1f44c6746747a68cfe81a3201ef25ea21f0a656c757aeb72";
};
buildType = "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 ];
};
}