1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 06:38:40 +03:00
nix-ros-overlay/dashing/rosidl-default-generators/default.nix
2019-09-06 12:16:22 -04:00

25 lines
1.2 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rosidl-generator-cpp, rosidl-typesupport-c, ament-cmake, rosidl-generator-py, ament-lint-common, ament-cmake-core, rosidl-typesupport-introspection-c, rosidl-typesupport-cpp, rosidl-cmake, rosidl-typesupport-introspection-cpp, ament-lint-auto, rosidl-generator-c }:
buildRosPackage {
pname = "ros-dashing-rosidl-default-generators";
version = "0.7.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl_defaults-release/archive/release/dashing/rosidl_default_generators/0.7.0-1.tar.gz";
name = "0.7.0-1.tar.gz";
sha256 = "9acdeb7b93b7a6cb8bb91678567276a0be6b75a723e79befbf76419b6a44a831";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rosidl-generator-cpp rosidl-typesupport-c rosidl-generator-py ament-cmake-core rosidl-typesupport-introspection-c rosidl-typesupport-cpp rosidl-cmake rosidl-typesupport-introspection-cpp rosidl-generator-c ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A configuration package defining the default ROS interface generators.'';
license = with lib.licenses; [ asl20 ];
};
}