nixpkgs/pkgs/by-name/mu/mus/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
561 B
Nix
Raw Normal View History

2023-08-20 15:53:49 +00:00
{ lib, fetchFromSourcehut, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mus";
2023-10-30 11:16:03 +00:00
version = "0.2.0";
2023-08-20 15:53:49 +00:00
src = fetchFromSourcehut {
owner = "~nbsp";
2023-08-20 15:53:49 +00:00
repo = pname;
rev = version;
2023-10-30 11:16:03 +00:00
hash = "sha256-yvMV+lhU9Wtwrhw0RKRUNFNznvZP0zcnT6jqPaqzhUs=";
2023-08-20 15:53:49 +00:00
};
2023-10-30 11:16:03 +00:00
cargoHash = "sha256-K9B8y9pOHcAOrUCmCB0zW2wy81DTF3K97gPYmAiKwAM=";
2023-08-20 15:53:49 +00:00
meta = with lib; {
description = "Pretty good mpd client";
homepage = "https://sr.ht/~nbsp/mus";
2023-08-20 15:53:49 +00:00
license = licenses.mit;
2023-11-28 21:13:38 +00:00
maintainers = with maintainers; [ nbsp ];
2023-08-20 15:53:49 +00:00
mainProgram = "mus";
};
}