mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
73 lines
1.3 KiB
Nix
73 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gettext,
|
|
fetchFromGitHub,
|
|
python3,
|
|
wrapGAppsHook3,
|
|
gtk3,
|
|
glib,
|
|
desktop-file-utils,
|
|
appstream-glib,
|
|
adwaita-icon-theme,
|
|
gobject-introspection,
|
|
librsvg,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "piper";
|
|
version = "0.8";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libratbag";
|
|
repo = "piper";
|
|
rev = version;
|
|
hash = "sha256-j58fL6jJAzeagy5/1FmygUhdBm+PAlIkw22Rl/fLff4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
gettext
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
desktop-file-utils
|
|
appstream-glib
|
|
gobject-introspection
|
|
];
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
adwaita-icon-theme
|
|
python3
|
|
librsvg
|
|
];
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
lxml
|
|
evdev
|
|
pygobject3
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Druntime-dependency-checks=false"
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson_install.sh # patchShebangs requires executable file
|
|
patchShebangs meson_install.sh data/generate-piper-gresource.xml.py
|
|
'';
|
|
|
|
meta = {
|
|
description = "GTK frontend for ratbagd mouse config daemon";
|
|
mainProgram = "piper";
|
|
homepage = "https://github.com/libratbag/piper";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ mvnetbiz ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|