nix-ros-overlay/distros/humble/clearpath-simulator/default.nix

26 lines
922 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, clearpath-generator-gz, clearpath-gz }:
buildRosPackage {
pname = "ros-humble-clearpath-simulator";
version = "1.3.1-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_simulator-release/archive/release/humble/clearpath_simulator/1.3.1-1.tar.gz";
name = "1.3.1-1.tar.gz";
sha256 = "db4d95632e7c6aedbe10ace061c60cd425ef654706d53021ee1d5da0ce0c081e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ clearpath-generator-gz clearpath-gz ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Clearpath Simulator Metapackage";
license = with lib.licenses; [ bsdOriginal ];
};
}