3
0
Fork 0
forked from mirrors/nixpkgs

pms: init at unstable-2022-11-12 (#205941)

Co-authored-by: Nikolay Korotkiy <sikmir@disroot.org>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
David Morgan 2022-12-16 20:30:42 +00:00 committed by GitHub
parent 236f1f5854
commit da1333cdd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ 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 ];
};
}

View file

@ -30678,6 +30678,8 @@ with pkgs;
ncmpcpp = callPackage ../applications/audio/ncmpcpp { };
pms = callPackage ../applications/audio/pms { };
pragha = libsForQt5.callPackage ../applications/audio/pragha { };
rofi-mpd = callPackage ../applications/audio/rofi-mpd { };