Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
845 B
Nix
40 lines
845 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "rofi-mpd";
|
|
version = "2.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JakeStanger";
|
|
repo = "Rofi_MPD";
|
|
rev = "v${version}";
|
|
sha256 = "0jabyn6gqh8ychn2a06xws3avz0lqdnx3qvqkavfd2xr6sp2q7lg";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
dependencies = with python3Packages; [
|
|
mutagen
|
|
mpd2
|
|
toml
|
|
appdirs
|
|
];
|
|
|
|
# upstream doesn't contain a test suite
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Rofi menu for interacting with MPD written in Python";
|
|
mainProgram = "rofi-mpd";
|
|
homepage = "https://github.com/JakeStanger/Rofi_MPD";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jakestanger ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|