Skip to content

Instantly share code, notes, and snippets.

@nico202
Created February 19, 2016 16:48
Show Gist options
  • Save nico202/4d35ed4c683c557b7dd0 to your computer and use it in GitHub Desktop.
Save nico202/4d35ed4c683c557b7dd0 to your computer and use it in GitHub Desktop.
{ stdenv, fetchFromGitHub, pkgconfig, cmake
}:
stdenv.mkDerivation rec {
name = "yarp-${version}";
version = "2.3.64";
src = fetchFromGitHub {
owner = "robotology";
repo = "yarp";
rev = "v2.3.64";
sha256 = "0x9sdc8d6rppzf1kx53w0yjlnmz7h75qv62yd3ls09w3cy7nb5x7";
};
buildInputs = [ cmake ];
cmakeFlags = [
"-DSKIP_ACE:BOOL=ON"
];
meta = {
description = "Yet Another Robot Platform";
homepage = http://yarp.it;
license = stdenv.lib.licenses.lgpl21;
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