nixpkgs/pkgs/applications/audio/pms/default.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

23 lines
632 B
Nix

{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule {
pname = "pms";
version = "unstable-2022-11-12";
src = fetchFromGitHub {
owner = "ambientsound";
repo = "pms";
rev = "40d6e37111293187ab4542c7a64bd73d1b13974f";
sha256 = "sha256-294MiS4c2PO2lFSSRrg8ns7sXzZsEUAqPG3q2z3TRUg=";
};
vendorHash = "sha256-XNFzG4hGDUN0wWbpBoQWUH1bWIgoYcyP4tNRGSV4ro4=";
meta = with lib; {
description = "Interactive Vim-like console client for MPD";
homepage = "https://ambientsound.github.io/pms/";
license = licenses.mit;
maintainers = with maintainers; [ deejayem ];
mainProgram = "pms";
};
}