mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
996 B
Nix
25 lines
996 B
Nix
|
|
# Copyright 2021 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, rosidl-cmake, rosidl-parser, rosidl-typesupport-interface }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-rosidl-generator-c";
|
|
version = "0.7.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/dashing/rosidl_generator_c/0.7.10-1.tar.gz";
|
|
name = "0.7.10-1.tar.gz";
|
|
sha256 = "5c6b2c6d8e0057327a91000281afb8efd41d5b925a266f7c654d04d2ff89bb8d";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common rosidl-cmake ];
|
|
propagatedBuildInputs = [ ament-cmake rosidl-cmake rosidl-parser rosidl-typesupport-interface ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Generate the ROS interfaces in C.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|