{ lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "spicetify-cli"; version = "2.9.2"; src = fetchFromGitHub { owner = "khanhas"; repo = pname; rev = "v${version}"; sha256 = "sha256-r6xm0Gq2QXWQEcYEu1n0y6S4r4odzYP8Srr0U+jZr6U="; }; vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs="; # used at runtime, but not installed by default postInstall = '' cp -r ${src}/jsHelper $out/bin/jsHelper ''; doInstallCheck = true; installCheckPhase = '' $out/bin/spicetify-cli --help > /dev/null ''; meta = with lib; { description = "Command-line tool to customize Spotify client"; homepage = "https://github.com/khanhas/spicetify-cli/"; license = licenses.gpl3Plus; maintainers = with maintainers; [ jonringer ]; }; }