24 lines
350 B
Nix
24 lines
350 B
Nix
|
{
|
||
|
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 = ./.;
|
||
|
}
|