1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/cob-android-msgs/default.nix

26 lines
816 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib, actionlib-msgs, catkin, message-generation, message-runtime }:
buildRosPackage {
pname = "ros-melodic-cob-android-msgs";
version = "0.1.7-r1";
src = fetchurl {
url = "https://github.com/ipa320/cob_android-release/archive/release/melodic/cob_android_msgs/0.1.7-1.tar.gz";
name = "0.1.7-1.tar.gz";
sha256 = "433dceb954125d4eae4fdf222e7886305b3690946e647c929eef4adc8fbe4d6a";
};
buildType = "catkin";
buildInputs = [ message-generation ];
propagatedBuildInputs = [ actionlib actionlib-msgs message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''cob_android_msgs'';
license = with lib.licenses; [ asl20 ];
};
}