3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix

33 lines
812 B
Nix
Raw Normal View History

2020-08-30 18:40:52 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "spicetify-cli";
2021-10-28 22:38:59 +01:00
version = "2.7.1";
2020-08-30 18:40:52 +01:00
src = fetchFromGitHub {
owner = "khanhas";
repo = pname;
rev = "v${version}";
2021-10-28 22:38:59 +01:00
sha256 = "sha256-fWh345J2fD9uoGrDiVZyEBiOlMy8giEGKHGMujT0mjo=";
2020-08-30 18:40:52 +01:00
};
2021-03-01 00:39:27 +00:00
vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs=";
2020-08-30 18:40:52 +01: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 ];
};
}