mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
886 B
Nix
25 lines
886 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, ros-environment, rosbag-migration-rule, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-delphi-esr-msgs";
|
|
version = "3.0.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/astuff/astuff_sensor_msgs-release/archive/release/melodic/delphi_esr_msgs/3.0.2-1.tar.gz";
|
|
name = "3.0.2-1.tar.gz";
|
|
sha256 = "610a69fa08410ae871622aefa5896e7fe99c94c3776dca97e63291dcde2118b2";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ message-generation ros-environment ];
|
|
propagatedBuildInputs = [ message-runtime rosbag-migration-rule std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Message definitions for the Delphi ESR'';
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|