mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenv, meson, ninja, pkgconfig, gettext, fetchFromGitHub, python3
|
|
, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3
|
|
, gobject-introspection }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "piper";
|
|
version = "0.5.1";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libratbag";
|
|
repo = "piper";
|
|
rev = version;
|
|
sha256 = "1nfjnsiwg2rs6gkjsxzhr2708i6di149dgwq3cf6l12rxqpb8arj";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ];
|
|
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
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x meson_install.sh # patchShebangs requires executable file
|
|
patchShebangs meson_install.sh
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|