mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
652 B
Nix
23 lines
652 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cob-android-settings";
|
|
version = "0.1.8-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_android-release/archive/release/melodic/cob_android_settings/0.1.8-1.tar.gz";
|
|
name = "0.1.8-1.tar.gz";
|
|
sha256 = "f5bc6c6814ac7f13819b975977b2f7b43312f03895c77ccc1405f202d600107d";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''cob_android_settings'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|