mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
921 B
Nix
25 lines
921 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, clearpath-control, clearpath-description, clearpath-generator-common, clearpath-platform }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-clearpath-common";
|
|
version = "0.3.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_common/0.3.2-1.tar.gz";
|
|
name = "0.3.2-1.tar.gz";
|
|
sha256 = "fedea5ea439dc9e0c3be8f1511170568663264c3efb6e3255fed49f6c7bbd12c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ clearpath-control clearpath-description clearpath-generator-common clearpath-platform ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Clearpath Common Metapackage";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|