nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 637 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5}: 6 7buildGoModule { 8 pname = "pms"; 9 version = "unstable-2022-11-12"; 10 11 src = fetchFromGitHub { 12 owner = "ambientsound"; 13 repo = "pms"; 14 rev = "40d6e37111293187ab4542c7a64bd73d1b13974f"; 15 sha256 = "sha256-294MiS4c2PO2lFSSRrg8ns7sXzZsEUAqPG3q2z3TRUg="; 16 }; 17 18 vendorHash = "sha256-XNFzG4hGDUN0wWbpBoQWUH1bWIgoYcyP4tNRGSV4ro4="; 19 20 meta = { 21 description = "Interactive Vim-like console client for MPD"; 22 homepage = "https://ambientsound.github.io/pms/"; 23 license = lib.licenses.mit; 24 maintainers = with lib.maintainers; [ deejayem ]; 25 mainProgram = "pms"; 26 }; 27}