2018-09-21 02:15:38 -07:00
|
|
|
{ stdenv, meson, ninja, pkgconfig, gettext, fetchFromGitHub, python3
|
2018-10-11 01:26:33 -07:00
|
|
|
, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3
|
2018-12-02 03:41:15 -08:00
|
|
|
, gobject-introspection }:
|
2018-09-21 02:15:38 -07:00
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2019-01-28 00:10:37 -08:00
|
|
|
pname = "piper";
|
2020-07-05 20:25:16 -07:00
|
|
|
version = "0.5.1";
|
2018-09-21 02:15:38 -07:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libratbag";
|
|
|
|
repo = "piper";
|
|
|
|
rev = version;
|
2020-07-05 20:25:16 -07:00
|
|
|
sha256 = "1nfjnsiwg2rs6gkjsxzhr2708i6di149dgwq3cf6l12rxqpb8arj";
|
2018-09-21 02:15:38 -07:00
|
|
|
};
|
|
|
|
|
2018-12-02 03:41:15 -08:00
|
|
|
nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ];
|
2019-09-19 13:09:57 -07:00
|
|
|
buildInputs = [
|
|
|
|
gtk3 glib gnome3.adwaita-icon-theme python3
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ lxml evdev pygobject3 ] ++ [
|
|
|
|
gobject-introspection # fixes https://github.com/NixOS/nixpkgs/issues/56943 for now
|
|
|
|
];
|
2018-09-21 02:15:38 -07:00
|
|
|
|
|
|
|
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";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/libratbag/piper";
|
2018-09-21 02:15:38 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ mvnetbiz ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|