mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
23 lines
827 B
Nix
23 lines
827 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, std-msgs, roscpp, robotis-framework-common }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-sensor-module-tutorial";
|
|
version = "0.2.0";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ROBOTIS-GIT-release/ROBOTIS-THORMANG-MPC-release/archive/release/kinetic/sensor_module_tutorial/0.2.0-0.tar.gz;
|
|
sha256 = "10ee406db0188592993202ac6075c720d822e7bd575d9e3a8fe88cb5955c1f0a";
|
|
};
|
|
|
|
buildInputs = [ std-msgs roscpp boost robotis-framework-common ];
|
|
propagatedBuildInputs = [ std-msgs roscpp boost robotis-framework-common ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The sensor_module_tutorial package'';
|
|
#license = lib.licenses.Apache 2.0;
|
|
};
|
|
}
|