1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/clearpath-config/default.nix

24 lines
841 B
Nix

# 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";
version = "2.1.1-r1";
src = fetchurl {
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";
};
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 ];
};
}