2021-01-25 08:26:54 +00:00
|
|
|
{ lib, meson, ninja, pkg-config, gettext, fetchFromGitHub, python3
|
2021-05-07 22:18:14 +01:00
|
|
|
, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome
|
2018-12-02 11:41:15 +00:00
|
|
|
, gobject-introspection }:
|
2018-09-21 10:15:38 +01:00
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2019-01-28 08:10:37 +00:00
|
|
|
pname = "piper";
|
2020-07-06 04:25:16 +01:00
|
|
|
version = "0.5.1";
|
2018-09-21 10:15:38 +01:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libratbag";
|
|
|
|
repo = "piper";
|
|
|
|
rev = version;
|
2020-07-06 04:25:16 +01:00
|
|
|
sha256 = "1nfjnsiwg2rs6gkjsxzhr2708i6di149dgwq3cf6l12rxqpb8arj";
|
2018-09-21 10:15:38 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ meson ninja gettext pkg-config wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ];
|
2019-09-19 21:09:57 +01:00
|
|
|
buildInputs = [
|
2021-05-07 22:18:14 +01:00
|
|
|
gtk3 glib gnome.adwaita-icon-theme python3
|
2019-09-19 21:09:57 +01:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ lxml evdev pygobject3 ] ++ [
|
|
|
|
gobject-introspection # fixes https://github.com/NixOS/nixpkgs/issues/56943 for now
|
|
|
|
];
|
2018-09-21 10:15:38 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_install.sh # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_install.sh
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-09-21 10:15:38 +01:00
|
|
|
description = "GTK frontend for ratbagd mouse config daemon";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/libratbag/piper";
|
2018-09-21 10:15:38 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ mvnetbiz ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|