1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-23 15:30:18 +03:00
nix-ros-overlay/eloquent/rcpputils/default.nix

26 lines
866 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, rcutils, ament-lint-common, ament-cmake, ament-lint-auto, ament-cmake-gtest }:
buildRosPackage {
pname = "ros-eloquent-rcpputils";
version = "0.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/eloquent/rcpputils/0.2.1-1.tar.gz";
name = "0.2.1-1.tar.gz";
sha256 = "06e6a39aff40a4d256674964fba35aa9ce2ec0d9ff64491a59b8576d2399d37c";
};
buildType = "ament_cmake";
buildInputs = [ rcutils ];
checkInputs = [ ament-lint-common ament-cmake-gtest ament-lint-auto ];
nativeBuildInputs = [ ament-cmake-ros ament-cmake ];
meta = {
description = ''Package containing utility code for C++.'';
license = with lib.licenses; [ asl20 ];
};
}