a814322eda
Currently fails with "ValueError: Namespace Gtk not available"
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ stdenv, meson, ninja, pkgconfig, gettext, fetchFromGitHub, python3
|
|
, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3
|
|
, gobjectIntrospection }:
|
|
|
|
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 gobjectIntrospection ];
|
|
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;
|
|
};
|
|
}
|