mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
cadffcfe50
checked with diffoscope+difflog and launching the programs i have fixed that issue in my other gir PRs
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, meson, ninja, pkg-config, gettext, fetchFromGitHub, python3
|
|
, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome
|
|
, gobject-introspection, librsvg }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "piper";
|
|
version = "0.7";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libratbag";
|
|
repo = "piper";
|
|
rev = version;
|
|
sha256 = "0jsvfy0ihdcgnqljfgs41lys1nlz18qvsa0a8ndx3pyr41f8w8wf";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja gettext pkg-config wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ];
|
|
buildInputs = [
|
|
gtk3 glib gnome.adwaita-icon-theme python3 librsvg
|
|
];
|
|
propagatedBuildInputs = with python3.pkgs; [ lxml evdev pygobject3 ];
|
|
|
|
mesonFlags = [
|
|
"-Druntime-dependency-checks=false"
|
|
"-Dtests=false"
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson_install.sh # patchShebangs requires executable file
|
|
patchShebangs meson_install.sh data/generate-piper-gresource.xml.py
|
|
'';
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|