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