about summary refs log tree commit diff
path: root/pkgs/by-name/du/dualsensectl/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/du/dualsensectl/package.nix')
-rw-r--r--pkgs/by-name/du/dualsensectl/package.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/by-name/du/dualsensectl/package.nix b/pkgs/by-name/du/dualsensectl/package.nix
new file mode 100644
index 0000000000000..63eefab713dc6
--- /dev/null
+++ b/pkgs/by-name/du/dualsensectl/package.nix
@@ -0,0 +1,52 @@
+{
+  lib,
+  stdenv,
+  fetchFromGitHub,
+  pkg-config,
+  dbus,
+  hidapi,
+  udev,
+  testers,
+  nix-update-script,
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+  pname = "dualsensectl";
+  version = "0.5";
+
+  src = fetchFromGitHub {
+    owner = "nowrep";
+    repo = "dualsensectl";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-+OSp9M0A0J4nm7ViDXG63yrUZuZxR7gyckwSCdy3qm0=";
+  };
+
+  postPatch = ''
+    substituteInPlace Makefile --replace "/usr/" "/"
+  '';
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [
+    dbus
+    hidapi
+    udev
+  ];
+
+  makeFlags = [ "DESTDIR=$(out)" ];
+
+  passthru = {
+    tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
+    updateScript = nix-update-script { };
+  };
+
+  meta = with lib; {
+    changelog = "https://github.com/nowrep/dualsensectl/releases/tag/v${finalAttrs.version}";
+    description = "Linux tool for controlling PS5 DualSense controller";
+    homepage = "https://github.com/nowrep/dualsensectl";
+    license = licenses.gpl2Only;
+    mainProgram = "dualsensectl";
+    maintainers = with maintainers; [ azuwis ];
+    platforms = platforms.linux;
+  };
+})