1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/crystal/builtin-interfaces/default.nix
2019-09-05 22:48:11 -04:00

24 lines
864 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rosidl-default-generators, rosidl-default-runtime, ament-cmake, ament-lint-common }:
buildRosPackage {
pname = "ros-crystal-builtin-interfaces";
version = "0.6.3";
src = fetchurl {
url = https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/crystal/builtin_interfaces/0.6.3-0.tar.gz;
sha256 = "249ef8ac57b8ee997b7de2d8be13a6c12f2785c7e3440f7f0c9171366b30b74a";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime ];
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
meta = {
description = ''A package containing builtin message and service definitions.'';
license = with lib.licenses; [ asl20 ];
};
}