nix-ros-overlay/distros/jazzy/clearpath-common/default.nix

25 lines
880 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, clearpath-control, clearpath-description, clearpath-generator-common }:
buildRosPackage {
pname = "ros-jazzy-clearpath-common";
version = "2.2.2-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/jazzy/clearpath_common/2.2.2-1.tar.gz";
name = "2.2.2-1.tar.gz";
sha256 = "4173afa194f60318f569c450c585e2d5cff9ee62ee7734297b15999ba28ebaa8";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ clearpath-control clearpath-description clearpath-generator-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Clearpath Common Metapackage";
license = with lib.licenses; [ bsdOriginal ];
};
}