mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
831 B
Nix
24 lines
831 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, ecl-exceptions, ecl-threads, ecl-time, geometry-msgs, roscpp, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-yocs-keyop";
|
|
version = "0.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/yujin_ocs-release/archive/release/melodic/yocs_keyop/0.8.2-0.tar.gz";
|
|
name = "0.8.2-0.tar.gz";
|
|
sha256 = "9b6de8d0572c1d3c31cca79bf6ad19f484cc7f0bbb4c6af27012f6eaf010f26d";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ ecl-exceptions ecl-threads ecl-time geometry-msgs roscpp std-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Keyboard teleoperation for your robot'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|