2018-09-21 10:15:38 +01:00
|
|
|
{ stdenv, meson, ninja, pkgconfig, gettext, fetchFromGitHub, python3
|
2018-10-11 09:26:33 +01:00
|
|
|
, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3
|
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";
|
2019-09-19 21:16:27 +01:00
|
|
|
version = "0.3";
|
2018-09-21 10:15:38 +01:00
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libratbag";
|
|
|
|
repo = "piper";
|
|
|
|
rev = version;
|
2019-09-19 21:16:27 +01:00
|
|
|
sha256 = "1vz7blhx6qsfrk5znwr0fj1k8vahnlaz6rn7ifcgxmq398mmz8z7";
|
2018-09-21 10:15:38 +01:00
|
|
|
};
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ];
|
2019-09-19 21:09:57 +01: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 10:15:38 +01: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";
|
|
|
|
homepage = https://github.com/libratbag/piper;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ mvnetbiz ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|