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:
parent
236f1f5854
commit
da1333cdd2
22
pkgs/applications/audio/pms/default.nix
Normal file
22
pkgs/applications/audio/pms/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue