mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
30 lines
862 B
Nix
30 lines
862 B
Nix
{ stdenv, lib, fetchFromGitHub, cmake, libusb1, pkg-config, freeglut, libGLU, libGL, libXi, libXmu
|
|
, GLUT, Cocoa
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "freenect";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenKinect";
|
|
repo = "libfreenect";
|
|
rev = "v${version}";
|
|
sha256 = "0was1va167rqshmpn382h36yyprpfi9cwillb6ylppmnfdrfrhrr";
|
|
};
|
|
|
|
buildInputs = [ libusb1 freeglut libGLU libGL libXi libXmu ]
|
|
++ lib.optionals stdenv.isDarwin [ GLUT Cocoa ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
meta = {
|
|
description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and macOS";
|
|
inherit version;
|
|
homepage = "http://openkinect.org";
|
|
license = with lib.licenses; [ gpl2 asl20 ];
|
|
maintainers = with lib.maintainers; [ bennofs ];
|
|
platforms = with lib.platforms; linux ++ darwin ;
|
|
};
|
|
}
|