mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
26 lines
928 B
Nix
26 lines
928 B
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, rcutils }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-rcpputils";
|
|
version = "2.8.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/rolling/rcpputils/2.8.1-1.tar.gz";
|
|
name = "2.8.1-1.tar.gz";
|
|
sha256 = "9f7ed953d5e78567f18a200ed7c1fba6c4159991f507b1743a103809144530fb";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ament-cmake-ros ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ rcutils ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Package containing utility code for C++.'';
|
|
license = with lib.licenses; [ asl20 bsd3 ];
|
|
};
|
|
}
|