Skip to content

Instantly share code, notes, and snippets.

@Mic92
Forked from nico202/default.nix
Created September 26, 2016 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mic92/4ab0165e27d23d47ea1822e80ba904ef to your computer and use it in GitHub Desktop.
Save Mic92/4ab0165e27d23d47ea1822e80ba904ef to your computer and use it in GitHub Desktop.
gazebo-yarp-plugins
{ 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