nixpkgs/pkgs/applications/audio/spotify-player/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

103 lines
3.1 KiB
Nix
Raw Normal View History

2023-01-30 15:29:49 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, cmake
# deps for audio backends
2023-01-30 15:29:49 +00:00
, alsa-lib
, libpulseaudio
, portaudio
, libjack2
, SDL2
, gst_all_1
2023-01-30 15:29:49 +00:00
, dbus
, fontconfig
2023-06-03 07:26:20 +00:00
, libsixel
# build options
, withStreaming ? true
, withDaemon ? true
, withAudioBackend ? "rodio" # alsa, pulseaudio, rodio, portaudio, jackaudio, rodiojack, sdl
, withMediaControl ? true
, withLyrics ? true
, withImage ? true
, withNotify ? true
, withSixel ? true
, stdenv
, darwin
, makeBinaryWrapper
2023-01-30 15:29:49 +00:00
}:
assert lib.assertOneOf "withAudioBackend" withAudioBackend [ "" "alsa" "pulseaudio" "rodio" "portaudio" "jackaudio" "rodiojack" "sdl" "gstreamer" ];
2023-01-30 15:29:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "spotify-player";
2023-08-13 02:45:26 +00:00
version = "0.15.0";
2023-01-30 15:29:49 +00:00
src = fetchFromGitHub {
owner = "aome510";
repo = pname;
2023-03-14 08:21:21 +00:00
rev = "refs/tags/v${version}";
2023-08-13 02:45:26 +00:00
hash = "sha256-5+YBlXHpAzGgw6MqgnMSggCASS++A/WWomftX8Jxe7g=";
2023-01-30 15:29:49 +00:00
};
2023-08-13 02:45:26 +00:00
cargoHash = "sha256-PIYaJC3rVbPjc2CASzMGWAzUdrBwFnKqhrZO6nywdN8=";
2023-01-30 15:29:49 +00:00
nativeBuildInputs = [
pkg-config
cmake
rustPlatform.bindgenHook
] ++ lib.optionals stdenv.isDarwin [
makeBinaryWrapper
2023-01-30 15:29:49 +00:00
];
buildInputs = [
openssl
dbus
fontconfig
]
++ lib.optionals withSixel [ libsixel ]
++ lib.optionals (withAudioBackend == "alsa") [ alsa-lib ]
++ lib.optionals (withAudioBackend == "pulseaudio") [ libpulseaudio ]
++ lib.optionals (withAudioBackend == "rodio" && stdenv.isLinux) [ alsa-lib ]
++ lib.optionals (withAudioBackend == "portaudio") [ portaudio ]
++ lib.optionals (withAudioBackend == "jackaudio") [ libjack2 ]
++ lib.optionals (withAudioBackend == "rodiojack") [ alsa-lib libjack2 ]
++ lib.optionals (withAudioBackend == "sdl") [ SDL2 ]
++ lib.optionals (withAudioBackend == "gstreamer") [ gst_all_1.gstreamer gst_all_1.gst-devtools gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ]
++ lib.optionals (stdenv.isDarwin && withMediaControl) [ darwin.apple_sdk.frameworks.MediaPlayer ]
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
AppKit
AudioUnit
Cocoa
]);
2023-01-30 15:29:49 +00:00
buildNoDefaultFeatures = true;
buildFeatures = [ ]
++ lib.optionals (withAudioBackend != "") [ "${withAudioBackend}-backend" ]
++ lib.optionals withMediaControl [ "media-control" ]
++ lib.optionals withImage [ "image" ]
++ lib.optionals withLyrics [ "lyric-finder" ]
++ lib.optionals withDaemon [ "daemon" ]
++ lib.optionals withNotify [ "notify" ]
++ lib.optionals withStreaming [ "streaming" ]
++ lib.optionals withSixel [ "sixel" ];
2023-01-30 15:29:49 +00:00
# sixel-sys is dynamically linked to libsixel
postInstall = lib.optionals (stdenv.isDarwin && withSixel) ''
wrapProgram $out/bin/spotify_player \
--prefix DYLD_LIBRARY_PATH : "${lib.makeLibraryPath [libsixel]}"
'';
meta = {
description = "A terminal spotify player that has feature parity with the official client";
2023-01-30 15:29:49 +00:00
homepage = "https://github.com/aome510/spotify-player";
2023-03-14 08:21:21 +00:00
changelog = "https://github.com/aome510/spotify-player/releases/tag/v${version}";
2023-01-31 13:48:12 +00:00
mainProgram = "spotify_player";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dit7ya xyven1 ];
2023-01-30 15:29:49 +00:00
};
}