spotatui: init at 0.36.2 (#485901)

This commit is contained in:
Sandro
2026-03-01 02:22:35 +00:00
committed by GitHub
+56
View File
@@ -0,0 +1,56 @@
{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
pkg-config,
alsa-lib,
openssl,
pipewire,
withPipewireVisualizer ? true,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "spotatui";
version = "0.36.2";
src = fetchFromGitHub {
owner = "LargeModGames";
repo = "spotatui";
tag = "v${finalAttrs.version}";
hash = "sha256-E8VIMQUGKWAauN/GTGMOdvHsghhO4E0wVdE9lIk6zEc=";
};
cargoHash = "sha256-nHOLOlAZfp2k0nMAywTJT+TiTkUeybRVu+PkADBY22w=";
nativeBuildInputs = [ pkg-config ] ++ lib.optional withPipewireVisualizer rustPlatform.bindgenHook;
buildInputs = [
alsa-lib
openssl
]
++ lib.optional withPipewireVisualizer pipewire;
buildNoDefaultFeatures = true;
buildFeatures = [
"discord-rpc"
"mpris"
"streaming"
"telemetry"
]
++ lib.optional withPipewireVisualizer "audio-viz";
passthru.updateScript = nix-update-script { };
meta = {
description = "Fully standalone Spotify client for the terminal";
homepage = "https://github.com/LargeModGames/spotatui";
changelog = "https://github.com/LargeModGames/spotatui/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.lordmzte ];
mainProgram = "spotatui";
# macOS is supported by upstream, but the package maintainer has no way to test this.
platforms = lib.platforms.linux;
};
})