2024-04-12 13:51:24 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-04-12 13:51:24 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-clearpath-customization";
|
2025-03-14 13:29:43 +00:00
|
|
|
version = "1.2.0-r1";
|
2024-04-12 13:51:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-03-14 13:29:43 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_customization/1.2.0-1.tar.gz";
|
|
|
|
name = "1.2.0-1.tar.gz";
|
|
|
|
sha256 = "aed2711137bddd63904e6fa3274bfdce9b0ec8ab68efef7983bae452dccb528c";
|
2024-04-12 13:51:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Clearpath customization packages.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|