2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, libusb1, pkg-config, freeglut, libGLU, libGL, libXi, libXmu
|
2018-03-14 22:11:51 +00:00
|
|
|
, GLUT, Cocoa
|
|
|
|
}:
|
2015-08-26 15:01:43 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "freenect";
|
2020-05-19 07:02:53 +01:00
|
|
|
version = "0.6.1";
|
2015-08-26 15:01:43 +01:00
|
|
|
|
2016-10-01 12:52:24 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OpenKinect";
|
|
|
|
repo = "libfreenect";
|
|
|
|
rev = "v${version}";
|
2020-05-19 07:02:53 +01:00
|
|
|
sha256 = "0was1va167rqshmpn382h36yyprpfi9cwillb6ylppmnfdrfrhrr";
|
2015-09-02 09:26:29 +01:00
|
|
|
};
|
2015-08-26 15:01:43 +01:00
|
|
|
|
2020-04-04 08:44:12 +01:00
|
|
|
buildInputs = [ libusb1 freeglut libGLU libGL libXi libXmu ]
|
2018-03-14 22:11:51 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ GLUT Cocoa ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2015-09-02 09:26:29 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-06 23:05:18 +01:00
|
|
|
description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and macOS";
|
2015-09-02 09:26:29 +01:00
|
|
|
inherit version;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://openkinect.org";
|
2018-03-14 22:11:51 +00:00
|
|
|
license = with lib.licenses; [ gpl2 asl20 ];
|
|
|
|
maintainers = with lib.maintainers; [ bennofs ];
|
|
|
|
platforms = with lib.platforms; linux ++ darwin ;
|
2015-09-02 09:26:29 +01:00
|
|
|
};
|
2015-08-26 15:01:43 +01:00
|
|
|
}
|