From cc7d570681d0391f7f6caef035749471a3c91efc Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Thu, 21 Aug 2025 04:25:55 +0300 Subject: [PATCH] fix: remove broken spotify patch --- overlays/default.nix | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/overlays/default.nix b/overlays/default.nix index 640f80f..0256be7 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -49,33 +49,6 @@ in sing-box = final.sing-box-extended; wine = prev.wineWow64Packages.stagingFull; - # Patch spotify with spotx - spotify = prev.spotify.overrideAttrs ( - oa: - let - spotx = prev.fetchurl { - url = "https://raw.githubusercontent.com/SpotX-Official/SpotX-Bash/b1de24ec4c23c45da373dcb64a44e372253a0c16/spotx.sh"; - hash = "sha256-/p6cJKzaZzjcLJISFudstQjs+lPXnXx4f0vxKbF9Sqw="; - }; - in - { - nativeBuildInputs = - oa.nativeBuildInputs - ++ (with prev; [ - perl - unzip - util-linux - zip - ]); - postUnpack = oa.postUnpack or "" + '' - patchShebangs --build ${spotx} - ''; - postInstall = oa.postInstall or "" + '' - bash ${spotx} -f -h -P "$out/share/spotify" - ''; - } - ); - # Move modprobed config to subdir. Easier to use with impermanence modprobed-db = prev.modprobed-db.overrideAttrs (oa: { nativeBuildInputs = [ prev.makeWrapper ] ++ oa.nativeBuildInputs or [ ];