mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
25 lines
822 B
Nix
25 lines
822 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-clearpath-customization";
|
|
version = "2.1.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/clearpath-gbp/clearpath_common-release/archive/release/jazzy/clearpath_customization/2.1.0-1.tar.gz";
|
|
name = "2.1.0-1.tar.gz";
|
|
sha256 = "8a47c7956b779b4859e06903790ddcf97d378837a36d97117738d21452aa23c2";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Clearpath customization packages.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|