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/humble/clearpath-generator-common/default.nix

27 lines
1,010 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, clearpath-config, clearpath-control, clearpath-description, clearpath-platform }:
buildRosPackage {
pname = "ros-humble-clearpath-generator-common";
version = "0.2.7-r1";
src = fetchurl {
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/humble/clearpath_generator_common/0.2.7-1.tar.gz";
name = "0.2.7-1.tar.gz";
sha256 = "497207e11e6ea63429f70e2afe63a38e238eabfdb87e88449d7682795e833a21";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ 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 ];
};
}