mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
832 B
Nix
23 lines
832 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, message-generation, message-runtime, actionlib, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-fetch-auto-dock-msgs";
|
||
|
version = "1.1.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/fetchrobotics-gbp/fetch_msgs-release/archive/release/melodic/fetch_auto_dock_msgs/1.1.1-0.tar.gz;
|
||
|
sha256 = "34f30fe803b0fad0edc3a7983308c34404592920ce11fbdd0d96fd8ea849eb77";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ actionlib message-runtime actionlib-msgs geometry-msgs ];
|
||
|
nativeBuildInputs = [ message-generation actionlib-msgs actionlib catkin geometry-msgs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Messages for fetch_auto_dock package'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|