mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, clearpath-config, clearpath-control, clearpath-description, clearpath-platform }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-clearpath-generator-common";
|
|
version = "0.2.11-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_generator_common/0.2.11-1.tar.gz";
|
|
name = "0.2.11-1.tar.gz";
|
|
sha256 = "65edc295a783b9df2b6d0bdd7c8267b1de3b6149a4db17e81c65495683891330";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ clearpath-config clearpath-control clearpath-description clearpath-platform ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Clearpath Common Generator";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|