mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
816 B
Nix
25 lines
816 B
Nix
|
|
# Copyright 2021 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.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_android-release/archive/release/melodic/cob_android_msgs/0.1.8-1.tar.gz";
|
|
name = "0.1.8-1.tar.gz";
|
|
sha256 = "eee9619f0b8b8b5bf17fc8f9058b608dd3fb3f3fd3a389f14369c65f38389017";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ message-generation ];
|
|
propagatedBuildInputs = [ actionlib actionlib-msgs message-runtime ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''cob_android_msgs'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|