b6fce7201e
xboxdrv doesn’t use scons for installing, but instead using a makefile! Everything else is in scons so we have to keep that. I’ve added a dontUseSconsInstall flag to the scons setup-hook to skip the automatic overwrite of default “make install” call.
28 lines
794 B
Nix
28 lines
794 B
Nix
{ 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";
|
|
};
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ scons libX11 libusb1 boost glib dbus-glib ];
|
|
dontUseSconsInstall = true;
|
|
|
|
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;
|
|
};
|
|
|
|
}
|