1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 14:48:39 +03:00
nix-ros-overlay/eloquent/std-msgs/default.nix

25 lines
916 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-eloquent-std-msgs";
version = "0.8.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/eloquent/std_msgs/0.8.1-1.tar.gz";
name = "0.8.1-1.tar.gz";
sha256 = "39f817a1c93add129ff4d7afa13447aaa692b56299b64876dedc9d1eab8a9e2a";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''A package containing some standard message definitions.'';
license = with lib.licenses; [ asl20 ];
};
}