nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix

33 lines
812 B
Nix
Raw Normal View History

2020-08-30 17:40:52 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "spicetify-cli";
2021-03-01 00:39:27 +00:00
version = "1.2.1";
2020-08-30 17:40:52 +00:00
src = fetchFromGitHub {
owner = "khanhas";
repo = pname;
rev = "v${version}";
2021-03-01 00:39:27 +00:00
sha256 = "sha256-HASFaPqm/A1QQ4nkd2hgeyqWplwE1RTrWA937rJA5Oo=";
2020-08-30 17:40:52 +00:00
};
2021-03-01 00:39:27 +00:00
vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs=";
2020-08-30 17:40:52 +00:00
# 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 ];
};
}