aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/os-specific/linux/xpadneo/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/xpadneo/default.nix')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/xpadneo/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/xpadneo/default.nix b/nixpkgs/pkgs/os-specific/linux/xpadneo/default.nix
new file mode 100644
index 00000000000..7a1c2d1cec9
--- /dev/null
+++ b/nixpkgs/pkgs/os-specific/linux/xpadneo/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchFromGitHub, kernel, bluez }:
+
+stdenv.mkDerivation rec {
+ pname = "xpadneo";
+ version = "0.8.2";
+
+ src = fetchFromGitHub {
+ owner = "atar-axis";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0v688j7jx2b68zlwnrr5y63zxzhldygw1lcp8f3irayhcp8ikzzy";
+ };
+
+ setSourceRoot = ''
+ export sourceRoot=$(pwd)/source/hid-xpadneo/src
+ '';
+
+ postPatch = ''
+ # Set kernel module version
+ substituteInPlace hid-xpadneo.c \
+ --subst-var-by DO_NOT_CHANGE ${version}
+ '';
+
+ nativeBuildInputs = kernel.moduleBuildDependencies;
+ buildInputs = [ bluez ];
+
+ makeFlags = [
+ "-C"
+ "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
+ "M=$(sourceRoot)"
+ ];
+
+ buildFlags = [ "modules" ];
+ installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ];
+ installTargets = [ "modules_install" ];
+
+ meta = with stdenv.lib; {
+ description = "Advanced Linux driver for Xbox One wireless controllers";
+ homepage = "https://atar-axis.github.io/xpadneo";
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ };
+}