summary refs log tree commit diff
path: root/pkgs/misc/drivers/xboxdrv/default.nix
blob: 8262eea48b435ee5af19a2a611e5428bcd4b75b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, scons, libX11, pkgconfig
, libusb1, boost, glib, dbus_glib }:

let
  version = "0.8.8";
in stdenv.mkDerivation {
  name = "xboxdrv-${version}";

  src = fetchurl {
    url = "https://github.com/xboxdrv/xboxdrv/archive/v${version}.tar.gz";
    sha256 = "0jx2wqmc7602dxyj19n3h8x0cpy929h7c0h39vcc5rf0q74fh3id";
  };

  patchPhase = ''
    substituteInPlace Makefile --replace /usr/local "$out"
  '';

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ scons libX11 libusb1 boost glib dbus_glib];

  meta = with stdenv.lib; {
    homepage = https://pingus.seul.org/~grumbel/xboxdrv/;
    description = "Xbox/Xbox360 (and more) gamepad driver for Linux that works in userspace";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.fuuzetsu ];
    platforms = platforms.linux;
  };

}