lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 23 lines 635 B view raw
1{ lib, fetchFromGitHub, buildGoModule }: 2 3buildGoModule { 4 pname = "pms"; 5 version = "unstable-2022-11-12"; 6 7 src = fetchFromGitHub { 8 owner = "ambientsound"; 9 repo = "pms"; 10 rev = "40d6e37111293187ab4542c7a64bd73d1b13974f"; 11 sha256 = "sha256-294MiS4c2PO2lFSSRrg8ns7sXzZsEUAqPG3q2z3TRUg="; 12 }; 13 14 vendorHash = "sha256-XNFzG4hGDUN0wWbpBoQWUH1bWIgoYcyP4tNRGSV4ro4="; 15 16 meta = with lib; { 17 description = "An interactive Vim-like console client for MPD"; 18 homepage = "https://ambientsound.github.io/pms/"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ deejayem ]; 21 mainProgram = "pms"; 22 }; 23}