about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix b/nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix
deleted file mode 100644
index 7447f934c82e..000000000000
--- a/nixpkgs/pkgs/applications/misc/spicetify-cli/default.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{ lib, buildGoModule, fetchFromGitHub, testers, spicetify-cli }:
-
-buildGoModule rec {
-  pname = "spicetify-cli";
-  version = "2.27.2";
-
-  src = fetchFromGitHub {
-    owner = "spicetify";
-    repo = "spicetify-cli";
-    rev = "v${version}";
-    hash = "sha256-TT7ZPvpiiDAvvN2ec/qN4i/6XCxfeBTPLD3dCxVTKBY=";
-  };
-
-  vendorHash = "sha256-H2kSTsYiD9HResHes+7YxUyNcjtM0SLpDPUC0Y518VM=";
-
-  ldflags = [
-    "-s -w"
-    "-X 'main.version=${version}'"
-  ];
-
-  # used at runtime, but not installed by default
-  postInstall = ''
-    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-cli --help > /dev/null
-  '';
-
-  passthru.tests.version = testers.testVersion {
-    package = spicetify-cli;
-    command = "spicetify-cli -v";
-  };
-
-  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-cli";
-  };
-}