mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 00:20:36 +03:00
23 lines
728 B
Nix
23 lines
728 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, cob-script-server, catkin, cob-android-msgs, rospy }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-cob-android-script-server";
|
||
|
version = "0.1.6-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ipa320/cob_android-release/archive/release/melodic/cob_android_script_server/0.1.6-1.tar.gz;
|
||
|
sha256 = "ea5eb372ef9f8f09cc5e3526ea3a2f49559b7cff6cd83e9a800fffecbf1b825a";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ cob-script-server cob-android-msgs rospy ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''cob_android_script_server'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|