Created
September 26, 2016 14:05
-
-
Save nico202/90f832713e07ea3fba5bc35dcb1e2eee to your computer and use it in GitHub Desktop.
gazebo-yarp-plugins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchFromGitHub, cmake, pkgconfig | |
, ogre, ignition, tinyxml, gazeboSimulator | |
, freeimage, tbb, yarp | |
}: | |
stdenv.mkDerivation rec { | |
name = "gazebo-yarp-plugins-${version}"; | |
version = "0.1.2"; | |
src = fetchFromGitHub { | |
owner = "robotology"; | |
repo = "gazebo-yarp-plugins"; | |
rev = "v0.1.2"; | |
sha256 = "1z6w276z9sszngw2hm05x0rrq0rkdmzz849ihcgymkiiq678n3z4"; | |
}; | |
cmakeFlags = [ "-DCMAKE_MODULE_PATH=${ogre}/lib/OGRE/cmake" ]; | |
buildInputs = [ | |
cmake | |
pkgconfig | |
gazeboSimulator.gazebo6 | |
gazeboSimulator.sdformat3 | |
ignition.math | |
freeimage | |
ogre | |
tinyxml | |
tbb | |
yarp | |
]; | |
postInstall = '' | |
echo $out | |
''; | |
meta = { | |
description = "Gazebo plugin to interface GAZEBO with YARP"; | |
homepage = https://github.com/robotology/gazebo-yarp-plugins/; | |
license = stdenv.lib.licenses.lgpl3; | |
platforms = stdenv.lib.platforms.linux; | |
maintainers = [ stdenv.lib.maintainers.nico202 ]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment