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/foxy/rcpputils/default.nix

26 lines
868 B
Nix
Raw Normal View History

# Copyright 2020 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.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/foxy/rcpputils/1.3.1-1.tar.gz";
name = "1.3.1-1.tar.gz";
sha256 = "2bdda95ed4fbbdbc39450cfe2753c89c5bb9001e5f5b007ce8e057a60b6591f0";
};
buildType = "ament_cmake";
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 ];
};
}