mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
23 lines
669 B
Nix
23 lines
669 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-yocs-controllers";
|
||
|
version = "0.8.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/yujinrobot-release/yujin_ocs-release/archive/release/melodic/yocs_controllers/0.8.2-0.tar.gz;
|
||
|
sha256 = "f45d647a26a653328fe0a94eb13c786fe4854c891e03509806d0fa013d09f797";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ roscpp ];
|
||
|
nativeBuildInputs = [ catkin roscpp ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Library for various controller types and algorithms'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|