plasmahud: fix runtime errors and other cleanup (#271479)

* plasma-hud: fix runtime errors

* plasma-hud: clean up installPhase

* plasma-hud: fix scoping for `propagatedBuildInputs`

* plasma-hud: formatting

* plasma-hud: clean up src

* plasma-hud: remove `with lib;`

* plasma-hud: fix potential splicing issue (see #211340)
This commit is contained in:
éclairevoyant 2024-04-17 14:06:51 +00:00 committed by GitHub
parent e7318026c8
commit 4dcd08c9d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,42 +1,54 @@
{ lib, python3, fetchFromGitHub, rofi, gobject-introspection }:
{ wrapGAppsHook
, lib
, python3Packages
, fetchFromGitHub
, rofi
, gobject-introspection
}:
python3.pkgs.buildPythonApplication rec{
python3Packages.buildPythonApplication rec {
pname = "plasma-hud";
version = "19.10.1";
format = "other";
src = fetchFromGitHub {
owner = "Zren";
repo = pname;
repo = "plasma-hud";
rev = version;
sha256 = "19vlc156jfdamw7q1pc78fmlf0h3sff5ar3di9j316vbb60js16l";
hash = "sha256-1AQtgVlrmzBkim1kVZzTAwJHq0OH3YAPr6o5aUpgdKc=";
};
propagatedBuildInputs = with python3.pkgs; [
rofi
nativeBuildInputs = [
gobject-introspection
wrapGAppsHook
];
propagatedBuildInputs = (with python3Packages; [
dbus-python
pygobject3
setproctitle
xlib
pygobject3
gobject-introspection
];
format = "other";
]) ++ [ rofi ];
postPatch = ''
sed -i "s:/usr/lib/plasma-hud:$out/bin:" etc/xdg/autostart/plasma-hud.desktop
'';
installPhase = ''
patchShebangs $out/bin/plasma-hud
mkdir -p $out/bin $out/etc/xdg/autostart
cp -r $src/usr/lib/plasma-hud/plasma-hud $out/bin/plasma-hud
cp -r $src/etc $out/etc
runHook preInstall
install -Dm555 usr/lib/plasma-hud/plasma-hud -t $out/bin
cp -r etc -t $out
runHook postInstall
'';
meta = with lib;{
license = licenses.gpl2Only;
meta = {
license = lib.licenses.gpl2Only;
homepage = "https://github.com/Zren/plasma-hud";
platforms = platforms.unix;
platforms = lib.platforms.unix;
description = "Run menubar commands, much like the Unity 7 Heads-Up Display (HUD)";
maintainers = with maintainers; [ pasqui23 ];
maintainers = with lib.maintainers; [ pasqui23 ];
mainProgram = "plasma-hud";
};
}