freenect: cosmetic (2 space indents)

This commit is contained in:
Bjørn Forsman 2015-09-02 10:26:29 +02:00
parent eec0113516
commit c54d939d6d

View File

@ -1,22 +1,23 @@
{ stdenv, fetchzip, cmake, libusb, pkgconfig, freeglut, mesa, libXi, libXmu }: { stdenv, fetchzip, cmake, libusb, pkgconfig, freeglut, mesa, libXi, libXmu }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "freenect-${version}"; name = "freenect-${version}";
version = "0.5.2"; version = "0.5.2";
src = fetchzip {
url = "https://github.com/OpenKinect/libfreenect/archive/v${version}.tar.gz";
sha256 = "04p4q19fkh97bn7kf0xsk6mrig2aj10i3s9z6hdrr70l6dfpf4w9";
};
buildInputs = [ libusb freeglut mesa libXi libXmu ]; src = fetchzip {
nativeBuildInputs = [ cmake pkgconfig ]; url = "https://github.com/OpenKinect/libfreenect/archive/v${version}.tar.gz";
sha256 = "04p4q19fkh97bn7kf0xsk6mrig2aj10i3s9z6hdrr70l6dfpf4w9";
};
meta = { buildInputs = [ libusb freeglut mesa libXi libXmu ];
description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and OS X"; nativeBuildInputs = [ cmake pkgconfig ];
inherit version;
homepage = http://openkinect.org; meta = {
license = with stdenv.lib.licenses; [ gpl2 asl20 ]; description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and OS X";
maintainers = with stdenv.lib.maintainers; [ bennofs ]; inherit version;
platforms = stdenv.lib.platforms.linux; homepage = http://openkinect.org;
}; license = with stdenv.lib.licenses; [ gpl2 asl20 ];
maintainers = with stdenv.lib.maintainers; [ bennofs ];
platforms = stdenv.lib.platforms.linux;
};
} }