mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
32 lines
817 B
Nix
32 lines
817 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "spicetify-cli";
|
|
version = "2.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spicetify";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-NX3qbnnbV2mLxBQCjfl7xNicyir6usi2uYGw6Yij/ho=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-zYIbtcDM9iYSRHagvI9D284Y7w0ZxG4Ba1p4jqmQyng=";
|
|
|
|
# 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/spicetify/spicetify-cli/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|