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, actionlib, actionlib-msgs, catkin, geometry-msgs, message-generation, message-runtime }:
|
|
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";
|
|
name = "1.1.1-0.tar.gz";
|
|
sha256 = "34f30fe803b0fad0edc3a7983308c34404592920ce11fbdd0d96fd8ea849eb77";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ message-generation ];
|
|
propagatedBuildInputs = [ actionlib actionlib-msgs geometry-msgs message-runtime ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Messages for fetch_auto_dock package'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|