Merge pull request #158017 from MoritzBoehme/sptlrx

This commit is contained in:
Sandro 2022-02-15 13:46:06 +01:00 committed by GitHub
commit ad18f1dd29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sptlrx";
version = "0.1.0";
src = fetchFromGitHub {
owner = "raitonoberu";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Wk4vXm6sB+Rw0VFAhfD0GKxsP+1LwpS6VFHa3UENuJk=";
};
vendorSha256 = "sha256-l5gIbjB2rJyNmZBqrHo4kwClmAgjgDWHTs5KWzrfC08=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Spotify lyrics in your terminal";
homepage = "https://github.com/raitonoberu/sptlrx";
license = licenses.mit;
maintainers = with maintainers; [ MoritzBoehme ];
};
}

View file

@ -28672,6 +28672,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) AppKit Security;
};
sptlrx = callPackage ../applications/audio/sptlrx { };
squishyball = callPackage ../applications/audio/squishyball {
ncurses = ncurses5;
};