nix-ros-overlay/distros/foxy/rcpputils/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
917 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-foxy-rcpputils";
version = "1.3.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/foxy/rcpputils/1.3.2-1.tar.gz";
name = "1.3.2-1.tar.gz";
sha256 = "9320a98fab63a0e1b7516f5fb16d49f6bfd6f4a50f8e37f02c52296c410d4725";
};
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 ];
};
}