1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/dashing/rcutils/default.nix

25 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, ament-cmake-gtest, ament-cmake-pytest, ament-cmake-ros, ament-lint-auto, ament-lint-common, launch, launch-testing, launch-testing-ament-cmake, osrf-testing-tools-cpp, python3Packages }:
buildRosPackage {
pname = "ros-dashing-rcutils";
version = "0.7.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcutils-release/archive/release/dashing/rcutils/0.7.5-1.tar.gz";
name = "0.7.5-1.tar.gz";
sha256 = "e02c8986a52e3379999f3a7aad03a32c6a8f4b952709bce1f92af1ff24ccbbb6";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing launch-testing-ament-cmake osrf-testing-tools-cpp ];
nativeBuildInputs = [ ament-cmake-ros python3Packages.empy ];
meta = {
description = ''Package containing various utility types and functions for C'';
license = with lib.licenses; [ asl20 ];
};
}