mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-14 03:28:39 +03:00
23 lines
786 B
Nix
23 lines
786 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, robotis-device, roscpp, catkin }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-robotis-framework-common";
|
|
version = "0.2.9";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ROBOTIS-GIT-release/ROBOTIS-Framework-release/archive/release/kinetic/robotis_framework_common/0.2.9-0.tar.gz;
|
|
sha256 = "4df2967e21738d25f6fca8c0b6ec8880fb9b40f58841b1b9979d7dcf7e68867a";
|
|
};
|
|
|
|
buildInputs = [ robotis-device roscpp ];
|
|
propagatedBuildInputs = [ robotis-device roscpp ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The package contains commonly used Headers for the ROBOTIS Framework.'';
|
|
#license = lib.licenses.Apache 2.0;
|
|
};
|
|
}
|