2025-01-24 13:19:18 +00:00
|
|
|
|
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-clearpath-config";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "2.1.1-r1";
|
2025-01-24 13:19:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/clearpath_config-release/archive/release/jazzy/clearpath_config/2.1.1-1.tar.gz";
|
|
|
|
name = "2.1.1-1.tar.gz";
|
|
|
|
sha256 = "77808137ec3c0f1fcfc4328dbaa232c3ca5f5945acbf326a284977fdb12ac015";
|
2025-01-24 13:19:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.pyyaml ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Clearpath Configuration YAML Parser and Writer";
|
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|