Merge branch 'master' of https://github.com/AlukardBF/nixos-config
This commit is contained in:
commit
14402d3fc7
@ -94,6 +94,7 @@ in {
|
||||
tdesktop
|
||||
spotifywm
|
||||
spotify-tui
|
||||
spicetify-cli
|
||||
discord
|
||||
pulseeffects
|
||||
] ++ lib.optionals (!isVM) [
|
||||
|
22
modules/applications/spicetify-cli.nix
Normal file
22
modules/applications/spicetify-cli.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user