1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/eloquent/delphi-srr-msgs/default.nix

27 lines
1,011 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, ros-environment, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-eloquent-delphi-srr-msgs";
version = "3.1.0-r1";
src = fetchurl {
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/eloquent/delphi_srr_msgs/3.1.0-1.tar.gz";
name = "3.1.0-1.tar.gz";
sha256 = "b58b67c6fd044ff06cbf7126c42a38ff4424990af9ba71345fc055b321d3a984";
};
buildType = "catkin";
buildInputs = [ ros-environment rosidl-default-generators ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Message definitions for the Delphi SRR'';
license = with lib.licenses; [ mit ];
};
}