2023-08-22 20:05:09 +00:00
|
|
|
{ lib, fetchFromSourcehut, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "mus";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "0.2.0";
|
2023-08-22 20:05:09 +00:00
|
|
|
|
|
|
|
src = fetchFromSourcehut {
|
2024-01-02 11:29:13 +00:00
|
|
|
owner = "~nbsp";
|
2023-08-22 20:05:09 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-yvMV+lhU9Wtwrhw0RKRUNFNznvZP0zcnT6jqPaqzhUs=";
|
2023-08-22 20:05:09 +00:00
|
|
|
};
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
cargoHash = "sha256-K9B8y9pOHcAOrUCmCB0zW2wy81DTF3K97gPYmAiKwAM=";
|
2023-08-22 20:05:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "a pretty good mpd client";
|
2024-01-02 11:29:13 +00:00
|
|
|
homepage = "https://sr.ht/~nbsp/mus";
|
2023-08-22 20:05:09 +00:00
|
|
|
license = licenses.mit;
|
2024-01-02 11:29:13 +00:00
|
|
|
maintainers = with maintainers; [ nbsp ];
|
2023-08-22 20:05:09 +00:00
|
|
|
mainProgram = "mus";
|
|
|
|
};
|
|
|
|
}
|