mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.3 KiB
Nix
43 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.7";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libratbag";
|
|
repo = "piper";
|
|
rev = version;
|
|
sha256 = "0jsvfy0ihdcgnqljfgs41lys1nlz18qvsa0a8ndx3pyr41f8w8wf";
|
|
};
|
|
|
|
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"
|
|
"-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";
|
|
mainProgram = "piper";
|
|
homepage = "https://github.com/libratbag/piper";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ mvnetbiz ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|