nixpkgs/pkgs/development/libraries/freenect/default.nix

26 lines
802 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, libusb, pkgconfig, freeglut, libGLU_combined, libXi, libXmu }:
2015-08-26 14:01:43 +00:00
stdenv.mkDerivation rec {
2015-09-02 08:26:29 +00:00
name = "freenect-${version}";
2018-03-14 21:43:51 +00:00
version = "0.5.7";
2015-08-26 14:01:43 +00:00
2016-10-01 11:52:24 +00:00
src = fetchFromGitHub {
owner = "OpenKinect";
repo = "libfreenect";
rev = "v${version}";
2018-03-14 21:43:51 +00:00
sha256 = "0vnc7z2avckh4mccqq6alsd2z7xvsh3kaslc5b0gnfxw0j269gl6";
2015-09-02 08:26:29 +00:00
};
2015-08-26 14:01:43 +00:00
buildInputs = [ libusb freeglut libGLU_combined libXi libXmu ];
2015-09-02 08:26:29 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
meta = {
description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and macOS";
2015-09-02 08:26:29 +00:00
inherit version;
homepage = http://openkinect.org;
license = with stdenv.lib.licenses; [ gpl2 asl20 ];
maintainers = with stdenv.lib.maintainers; [ bennofs ];
platforms = stdenv.lib.platforms.linux;
};
2015-08-26 14:01:43 +00:00
}