nix-ros-overlay/distros/humble/omni-base-simulation/default.nix

25 lines
799 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, omni-base-gazebo }:
buildRosPackage {
pname = "ros-humble-omni-base-simulation";
version = "2.4.0-r1";
src = fetchurl {
url = "https://github.com/pal-gbp/omni_base_simulation-release/archive/release/humble/omni_base_simulation/2.4.0-1.tar.gz";
name = "2.4.0-1.tar.gz";
sha256 = "9d8344a16020a23fb96392909353abef23756d8d5971cd44f701fda821bc1f7b";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto ];
propagatedBuildInputs = [ omni-base-gazebo ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = "The omni_base_simulation package";
license = with lib.licenses; [ asl20 ];
};
}