This commit is contained in:
Dmitriy Holkin 2020-02-21 00:00:53 +04:00
commit 14402d3fc7
3 changed files with 25 additions and 0 deletions

View File

@ -94,6 +94,7 @@ in {
tdesktop
spotifywm
spotify-tui
spicetify-cli
discord
pulseeffects
] ++ lib.optionals (!isVM) [

View File

@ -0,0 +1,22 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "spicetify-cli";
version = "0.9.7";
src = fetchFromGitHub {
owner = "khanhas";
repo = "spicetify-cli";
rev = "v${version}";
sha256 = "1zvihjzv4q4pshvwjjia27vkzcn24phrs5cadc7gbl1mqr3zyac6";
};
modSha256 = "1q6vvy2xz2wm2wzpjk04hbfmsjm72wfa3kxfnnc8b4gxhdhw50ql";
meta = with lib; {
description = "Commandline tool to customize Spotify client. Supports Windows, MacOS and Linux.";
homepage = https://github.com/khanhas/spicetify-cli;
license = licenses.gpl3;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}

View File

@ -23,6 +23,8 @@ in {
spotifyd = super.spotifyd.override { withPulseAudio = true; };
spicetify-cli = pkgs.callPackage ./applications/spicetify-cli.nix { };
# spotify-tui = pkgs.callPackage ./applications/spotify-tui.nix { };
# spotify-tui = naersk.buildPackage {