summary refs log tree commit diff
path: root/pkgs/os-specific/linux/piper
diff options
context:
space:
mode:
authorMatt Votava <mvnetbiz@gmail.com>2018-09-21 02:15:38 -0700
committerMatt Votava <mvnetbiz@gmail.com>2018-09-21 02:15:38 -0700
commit78f1715149940165c8b48d372903617c175b5bd1 (patch)
treef616c97adbb39942d4a51ba3352ec4fc61c61844 /pkgs/os-specific/linux/piper
parent9a859fb7f9fc7c81b78122e1c47765aa61e7aa28 (diff)
downloadnixpkgs-78f1715149940165c8b48d372903617c175b5bd1.tar
nixpkgs-78f1715149940165c8b48d372903617c175b5bd1.tar.gz
nixpkgs-78f1715149940165c8b48d372903617c175b5bd1.tar.bz2
nixpkgs-78f1715149940165c8b48d372903617c175b5bd1.tar.lz
nixpkgs-78f1715149940165c8b48d372903617c175b5bd1.tar.xz
nixpkgs-78f1715149940165c8b48d372903617c175b5bd1.tar.zst
nixpkgs-78f1715149940165c8b48d372903617c175b5bd1.zip
piper: init at 0.2.902
Add package piper. Piper is a gtk frontend application for ratbagctl
to configure gaming mice.
Diffstat (limited to 'pkgs/os-specific/linux/piper')
-rw-r--r--pkgs/os-specific/linux/piper/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/piper/default.nix b/pkgs/os-specific/linux/piper/default.nix
new file mode 100644
index 00000000000..3e774faaffe
--- /dev/null
+++ b/pkgs/os-specific/linux/piper/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, meson, ninja, pkgconfig, gettext, fetchFromGitHub, python3
+, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3 }:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "piper-${version}";
+  version = "0.2.902";
+
+  format = "other";
+
+  src = fetchFromGitHub {
+    owner  = "libratbag";
+    repo   = "piper";
+    rev    =  version;
+    sha256 = "1ny0vf8ym9v040cb5h084k5wwn929fnhq9infbdq8f8vvy61magb";
+  };
+
+  nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook desktop-file-utils appstream-glib ];
+  buildInputs = [ gtk3 glib gnome3.defaultIconTheme python3 ];
+  propagatedBuildInputs = with python3.pkgs; [ lxml evdev pygobject3 ];
+
+  postPatch = ''
+    chmod +x meson_install.sh # patchShebangs requires executable file
+    patchShebangs meson_install.sh
+  '';
+
+  meta = with stdenv.lib; {
+    description = "GTK frontend for ratbagd mouse config daemon";
+    homepage    = https://github.com/libratbag/piper;
+    license     = licenses.gpl2;
+    maintainers = with maintainers; [ mvnetbiz ];
+    platforms   = platforms.linux;
+  };
+}