nixpkgs/pkgs/by-name/mu/mus/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

24 lines
561 B
Nix

{ lib, fetchFromSourcehut, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mus";
version = "0.2.0";
src = fetchFromSourcehut {
owner = "~nbsp";
repo = pname;
rev = version;
hash = "sha256-yvMV+lhU9Wtwrhw0RKRUNFNznvZP0zcnT6jqPaqzhUs=";
};
cargoHash = "sha256-K9B8y9pOHcAOrUCmCB0zW2wy81DTF3K97gPYmAiKwAM=";
meta = with lib; {
description = "Pretty good mpd client";
homepage = "https://sr.ht/~nbsp/mus";
license = licenses.mit;
maintainers = with maintainers; [ nbsp ];
mainProgram = "mus";
};
}