3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/sptlrx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
594 B
Nix
Raw Normal View History

2022-02-03 18:25:29 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sptlrx";
2022-02-27 18:15:41 +00:00
version = "0.2.0";
2022-02-03 18:25:29 +00:00
src = fetchFromGitHub {
owner = "raitonoberu";
repo = pname;
rev = "v${version}";
2022-02-27 18:15:41 +00:00
sha256 = "sha256-b38DACSdnjwPsLMrkt0Ubpqpn/4SDAgrdSlp9iAcxfE=";
2022-02-03 18:25:29 +00:00
};
2022-02-27 18:15:41 +00:00
vendorSha256 = "sha256-/fqWnRQBpLNoTwqrFDKqQuv1r9do1voysBhLuj223S0=";
2022-02-03 18:25:29 +00:00
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Spotify lyrics in your terminal";
2022-02-03 18:25:29 +00:00
homepage = "https://github.com/raitonoberu/sptlrx";
license = licenses.mit;
maintainers = with maintainers; [ MoritzBoehme ];
};
}