fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
spicetify-cli,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "spicetify-cli";
|
|
version = "2.36.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spicetify";
|
|
repo = "spicetify-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZqWGKuYDxuKVqz6cNxZ3cTcKTxkxuu42b48hlAialKc=";
|
|
};
|
|
|
|
vendorHash = "sha256-UPrLXzAdvCOmLm1tekzKyulQ4+2BSyPUF1k66GwKS88=";
|
|
|
|
ldflags = [
|
|
"-s -w"
|
|
"-X 'main.version=${version}'"
|
|
];
|
|
|
|
# used at runtime, but not installed by default
|
|
postInstall = ''
|
|
mv $out/bin/spicetify-cli $out/bin/spicetify
|
|
ln -s $out/bin/spicetify $out/bin/spicetify-cli
|
|
cp -r ${src}/jsHelper $out/bin/jsHelper
|
|
cp -r ${src}/CustomApps $out/bin/CustomApps
|
|
cp -r ${src}/Extensions $out/bin/Extensions
|
|
cp -r ${src}/Themes $out/bin/Themes
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/spicetify --help > /dev/null
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion { package = spicetify-cli; };
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tool to customize Spotify client";
|
|
homepage = "https://github.com/spicetify/spicetify-cli/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [
|
|
jonringer
|
|
mdarocha
|
|
];
|
|
mainProgram = "spicetify";
|
|
};
|
|
}
|