mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 22:28:39 +03:00
27 lines
976 B
Nix
27 lines
976 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, ament-cmake, ament-lint-common, rosidl-default-generators, std-msgs, rosidl-default-runtime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-delphi-esr-msgs";
|
||
|
version = "3.0.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/dashing/delphi_esr_msgs/3.0.0-2.tar.gz";
|
||
|
name = "3.0.0-2.tar.gz";
|
||
|
sha256 = "c5fbeeae3284d8d4ca013b1dafd1579ddd24c85b1e938b81914d85c6a33e116c";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ std-msgs builtin-interfaces ];
|
||
|
checkInputs = [ ament-lint-common ];
|
||
|
propagatedBuildInputs = [ std-msgs rosidl-default-runtime builtin-interfaces ];
|
||
|
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Message definitions for the Delphi ESR'';
|
||
|
license = with lib.licenses; [ mit ];
|
||
|
};
|
||
|
}
|