Created
February 19, 2016 16:48
-
-
Save nico202/4d35ed4c683c557b7dd0 to your computer and use it in GitHub Desktop.
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, 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