My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/misc/drivers/xow/default.nix

46 lines
1.3 KiB

{ lib, stdenv, cabextract, fetchurl, fetchFromGitHub, libusb1 }:
5 years ago
stdenv.mkDerivation rec {
pname = "xow";
4 years ago
version = "0.5";
5 years ago
src = fetchFromGitHub {
owner = "medusalix";
repo = "xow";
rev = "v${version}";
4 years ago
sha256 = "071r2kx44k1sc49cad3i607xg618mf34ki1ykr5lnfx9y6qyz075";
};
firmware = fetchurl {
url = "http://download.windowsupdate.com/c/msdownload/update/driver/drvs/2017/07/1cd6a87c-623f-4407-a52d-c31be49e925c_e19f60808bdcbfbd3c3df6be3e71ffc52e43261e.cab";
sha256 = "013g1zngxffavqrk5jy934q3bdhsv6z05ilfixdn8dj0zy26lwv5";
5 years ago
};
4 years ago
makeFlags = [
"BUILD=RELEASE"
"VERSION=${version}"
"BINDIR=${placeholder ''out''}/bin"
"UDEVDIR=${placeholder ''out''}/lib/udev/rules.d"
"MODLDIR=${placeholder ''out''}/lib/modules-load.d"
"MODPDIR=${placeholder ''out''}/lib/modprobe.d"
"SYSDDIR=${placeholder ''out''}/lib/systemd/system"
];
4 years ago
postUnpack = ''
cabextract -F FW_ACC_00U.bin ${firmware}
mv FW_ACC_00U.bin source/firmware.bin
'';
5 years ago
enableParallelBuilding = true;
4 years ago
nativeBuildInputs = [ cabextract ];
buildInputs = [ libusb1 ];
5 years ago
meta = with lib; {
5 years ago
homepage = "https://github.com/medusalix/xow";
description = "Linux driver for the Xbox One wireless dongle";
license = licenses.gpl2Plus;
4 years ago
maintainers = [ maintainers.jansol ];
5 years ago
platforms = platforms.linux;
};
}