nixpkgs/pkgs/misc/drivers/xboxdrv/default.nix

29 lines
782 B
Nix
Raw Normal View History

2014-05-29 02:22:34 +00:00
{ stdenv, fetchurl, scons, libX11, pkgconfig
, libusb1, boost, glib, dbus-glib }:
2014-05-29 02:22:34 +00:00
let
2016-02-10 03:45:01 +00:00
version = "0.8.8";
2014-05-29 02:22:34 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "xboxdrv";
inherit version;
2014-05-29 02:22:34 +00:00
src = fetchurl {
2016-02-10 03:45:01 +00:00
url = "https://github.com/xboxdrv/xboxdrv/archive/v${version}.tar.gz";
sha256 = "0jx2wqmc7602dxyj19n3h8x0cpy929h7c0h39vcc5rf0q74fh3id";
2014-05-29 02:22:34 +00:00
};
makeFlags = "PREFIX=$(out)";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ scons libX11 libusb1 boost glib dbus-glib ];
dontUseSconsInstall = true;
2014-05-29 02:22:34 +00:00
meta = with stdenv.lib; {
homepage = https://pingus.seul.org/~grumbel/xboxdrv/;
2014-11-11 13:20:43 +00:00
description = "Xbox/Xbox360 (and more) gamepad driver for Linux that works in userspace";
2014-05-29 02:22:34 +00:00
license = licenses.gpl3Plus;
maintainers = [ ];
platforms = platforms.linux;
2014-05-29 02:22:34 +00:00
};
}