diff --git a/_sources/generated.json b/_sources/generated.json index 195f5f9..9f19bbd 100644 --- a/_sources/generated.json +++ b/_sources/generated.json @@ -166,26 +166,6 @@ }, "version": "v3.10.0" }, - "spotifyd": { - "cargoLocks": null, - "date": "2025-09-04", - "extract": null, - "name": "spotifyd", - "passthru": null, - "pinned": false, - "src": { - "deepClone": false, - "fetchSubmodules": false, - "leaveDotGit": false, - "name": null, - "rev": "f1acee9c6160db92dcd4214e96654cbbaed0e38a", - "sha256": "sha256-dcc+sklPJvV34U1A/eTD1kfIey4o5/kPq4yd72ey7LE=", - "sparseCheckout": [], - "type": "git", - "url": "https://github.com/ulic-youthlic/spotifyd.git" - }, - "version": "f1acee9c6160db92dcd4214e96654cbbaed0e38a" - }, "spotx": { "cargoLocks": null, "date": "2025-11-07", @@ -295,4 +275,4 @@ }, "version": "184f55dbc5320c34a56d02353410ad35a0f3e090" } -} \ No newline at end of file +} diff --git a/home/david/configurations/Tytonidae/default.nix b/home/david/configurations/Tytonidae/default.nix index e892e1e..d9662cb 100644 --- a/home/david/configurations/Tytonidae/default.nix +++ b/home/david/configurations/Tytonidae/default.nix @@ -32,7 +32,6 @@ kvm.enable = true; atuin.enable = true; ion.enable = true; - spotifyd.enable = true; awscli = { enable = true; url = "http://localhost:8491"; diff --git a/nvfetcher.toml b/nvfetcher.toml index 26b9e4f..345ab71 100644 --- a/nvfetcher.toml +++ b/nvfetcher.toml @@ -58,8 +58,3 @@ url.name = "yustar_$ver.zip" [nvim_vim-startuptime] fetch.github = "dstein64/vim-startuptime" src.git = "https://github.com/dstein64/vim-startuptime.git" - -[spotifyd] -fetch.git = "https://github.com/ulic-youthlic/spotifyd.git" -src.git = "https://github.com/ulic-youthlic/spotifyd.git" -src.branch = "push-mrxqoqwxqsqt" diff --git a/overlays/modifications/default.nix b/overlays/modifications/default.nix index 8233af6..663f1c1 100644 --- a/overlays/modifications/default.nix +++ b/overlays/modifications/default.nix @@ -12,7 +12,6 @@ in ./helix.nix ./cliphist.nix ./zulip.nix - ./spotifyd.nix ./nautilus.nix ./neovim-nightly.nix ./vim.nix diff --git a/overlays/modifications/spotifyd.nix b/overlays/modifications/spotifyd.nix deleted file mode 100644 index eb39754..0000000 --- a/overlays/modifications/spotifyd.nix +++ /dev/null @@ -1,5 +0,0 @@ -{outputs, ...}: _final: prev: let - inherit (prev.stdenv.hostPlatform) system; -in { - spotifyd = outputs.packages.${system}.spotifyd'; -} diff --git a/pkgs/spotifyd'.nix b/pkgs/spotifyd'.nix deleted file mode 100644 index ff1b4c0..0000000 --- a/pkgs/spotifyd'.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - srcs, - spotifyd, - rustPlatform, - ... -}: let - inherit (srcs.spotifyd) src date version; -in - spotifyd.overrideAttrs ( - _final: prev: { - inherit src; - version = - if prev.version != "0.4.1" - then - throw '' - Please remove - '' - else "0-unstable-${date}-git${version}"; - cargoDeps = rustPlatform.fetchCargoVendor { - inherit - (prev) - src - ; - hash = "sha256-WwShp1ebk89cBqRXqKDgbwGZraCDjQAOxoL4uEIq2aw="; - }; - } - )