159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
spicetify-cli,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "spicetify-cli";
|
|
version = "2.38.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spicetify";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-la0zNYWzsU49Z6OKTefocN3xzoyNceaPAzG+CAFKMPc=";
|
|
};
|
|
|
|
vendorHash = "sha256-BT/zmeNKr2pNBSCaRtT/Dxm3uCshd1j4IW0xU7b9Yz4=";
|
|
|
|
ldflags = [
|
|
"-s -w"
|
|
"-X 'main.version=${version}'"
|
|
];
|
|
|
|
# used at runtime, but not installed by default
|
|
postInstall = ''
|
|
mv $out/bin/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/cli";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.mdarocha ];
|
|
mainProgram = "spicetify";
|
|
};
|
|
}
|