Merge pull request #326079 from NixOS/backport-321738-to-release-24.05

[Backport release-24.05] spicetify-cli: 2.36.11 -> 2.36.14
This commit is contained in:
Peder Bergebakken Sundt 2024-07-20 19:18:03 +02:00 committed by GitHub
commit 512121b837
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,16 +8,16 @@
buildGoModule rec {
pname = "spicetify-cli";
version = "2.36.11";
version = "2.36.14";
src = fetchFromGitHub {
owner = "spicetify";
repo = "spicetify-cli";
repo = "cli";
rev = "v${version}";
hash = "sha256-ZqWGKuYDxuKVqz6cNxZ3cTcKTxkxuu42b48hlAialKc=";
hash = "sha256-F5fXTkUbpVwscM2GwMA/hSpe0ZVQU12Jb8I8dxuRzYc=";
};
vendorHash = "sha256-UPrLXzAdvCOmLm1tekzKyulQ4+2BSyPUF1k66GwKS88=";
vendorHash = "sha256-po0ZrIXtyK0txK+eWGZDEIGMI1/cwyLVsGUVnTaHKP0=";
ldflags = [
"-s -w"
@ -26,7 +26,7 @@ buildGoModule rec {
# used at runtime, but not installed by default
postInstall = ''
mv $out/bin/spicetify-cli $out/bin/spicetify
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
@ -43,11 +43,9 @@ buildGoModule rec {
meta = with lib; {
description = "Command-line tool to customize Spotify client";
homepage = "https://github.com/spicetify/spicetify-cli/";
homepage = "https://github.com/spicetify/cli";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
mdarocha
];
maintainers = [ maintainers.mdarocha ];
mainProgram = "spicetify";
};
}