mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 03:04:49 +03:00
26 lines
1,011 B
Nix
26 lines
1,011 B
Nix
|
|
# 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-esr-msgs";
|
|
version = "3.1.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/eloquent/delphi_esr_msgs/3.1.0-1.tar.gz";
|
|
name = "3.1.0-1.tar.gz";
|
|
sha256 = "118973b963642345c365bbccb8f7f3ae1c0178afe41d9266058c9a5e68b076a4";
|
|
};
|
|
|
|
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 ESR'';
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|