about summary refs log tree commit diff
path: root/pkgs/applications/audio/pms/default.nix
blob: d8c7bffcb0f44d89ab0e76f6a993b941392acf29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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 = "An interactive Vim-like console client for MPD";
    homepage = "https://ambientsound.github.io/pms/";
    license = licenses.mit;
    maintainers = with maintainers; [ deejayem ];
    mainProgram = "pms";
  };
}