about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/fo/footswitch/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/fo/footswitch/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/fo/footswitch/package.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/fo/footswitch/package.nix b/nixpkgs/pkgs/by-name/fo/footswitch/package.nix
new file mode 100644
index 000000000000..0856f758c8b8
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/fo/footswitch/package.nix
@@ -0,0 +1,35 @@
+{ lib, stdenv, fetchFromGitHub, pkg-config, hidapi }:
+
+stdenv.mkDerivation {
+  pname = "footswitch";
+  version = "unstable-2023-10-10";
+
+  src = fetchFromGitHub {
+    owner = "rgerganov";
+    repo = "footswitch";
+    rev = "b7493170ecc956ac87df2c36183253c945be2dcf";
+    sha256 = "sha256-vwjeWjIXQiFJ0o/wgEBrKP3hQi8Xa/azVS1IE/Q/MyY=";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ hidapi ];
+
+  postPatch = ''
+    substituteInPlace Makefile \
+      --replace /usr/local $out \
+      --replace /usr/bin/install install \
+      --replace /etc/udev $out/lib/udev
+  '';
+
+  preInstall = ''
+    mkdir -p $out/bin $out/lib/udev/rules.d
+  '';
+
+  meta = with lib; {
+    description = "Command line utlities for programming PCsensor and Scythe foot switches.";
+    homepage = "https://github.com/rgerganov/footswitch";
+    license = licenses.mit;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ baloo ];
+  };
+}