mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1,005 B
Nix
26 lines
1,005 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, libyaml, libyaml-vendor, osrf-testing-tools-cpp, rcutils }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-rcl-yaml-param-parser";
|
|
version = "0.8.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcl-release/archive/release/eloquent/rcl_yaml_param_parser/0.8.5-1.tar.gz";
|
|
name = "0.8.5-1.tar.gz";
|
|
sha256 = "b8d8380d4b85b63139c458eb199f8bb6f5691cf96c49ac0df393ef5fc733965c";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ rcutils ];
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
|
|
propagatedBuildInputs = [ libyaml libyaml-vendor ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Package containing various utility types and functions for C'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|