universe/home/programs/graphical/waybar/scripts/music/default.nix

24 lines
350 B
Nix
Raw Normal View History

2025-03-02 11:53:58 +00:00
{
lib,
python3Packages,
gobject-introspection,
wrapGAppsHook,
playerctl,
}:
python3Packages.buildPythonApplication {
pname = "waybar-music-script";
version = "0.0.0";
nativeBuildInputs = [
gobject-introspection
wrapGAppsHook
];
propagatedBuildInputs = [
python3Packages.pygobject3
playerctl
];
src = ./.;
}