plasma-hud: init at 19.10.1 (#74085)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
4b3b13c9c7
commit
a988b71a09
41
pkgs/misc/plasma-hud/default.nix
Normal file
41
pkgs/misc/plasma-hud/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ lib, python3, fetchFromGitHub, rofi, gobject-introspection }:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec{
|
||||||
|
pname = "plasma-hud";
|
||||||
|
version = "19.10.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Zren";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "19vlc156jfdamw7q1pc78fmlf0h3sff5ar3di9j316vbb60js16l";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
rofi
|
||||||
|
dbus-python
|
||||||
|
setproctitle
|
||||||
|
xlib
|
||||||
|
pygobject3
|
||||||
|
gobject-introspection
|
||||||
|
];
|
||||||
|
format = "other";
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib;{
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
homepage = "https://github.com/Zren/plasma-hud";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
description = "Run menubar commands, much like the Unity 7 Heads-Up Display (HUD)";
|
||||||
|
maintainers = with maintainers; [ pasqui23 ];
|
||||||
|
};
|
||||||
|
}
|
@ -19210,6 +19210,8 @@ with pkgs;
|
|||||||
|
|
||||||
pyotherside = libsForQt5.callPackage ../development/libraries/pyotherside {};
|
pyotherside = libsForQt5.callPackage ../development/libraries/pyotherside {};
|
||||||
|
|
||||||
|
plasma-hud = callPackage ../misc/plasma-hud { };
|
||||||
|
|
||||||
re2 = callPackage ../development/libraries/re2 { };
|
re2 = callPackage ../development/libraries/re2 { };
|
||||||
|
|
||||||
qbs = libsForQt5.callPackage ../development/tools/build-managers/qbs { };
|
qbs = libsForQt5.callPackage ../development/tools/build-managers/qbs { };
|
||||||
|
Loading…
Reference in New Issue
Block a user