-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathdefault.nix
More file actions
135 lines (123 loc) · 3.44 KB
/
default.nix
File metadata and controls
135 lines (123 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
lib,
rustPlatform,
pkg-config,
openssl,
cmake,
installShellFiles,
writableTmpDirAsHomeHook,
# deps for audio backends
alsa-lib,
libpulseaudio,
portaudio,
libjack2,
SDL2,
gst_all_1,
dbus,
fontconfig,
libsixel,
autoconf,
automake,
libtool,
# build options
withStreaming ? true,
withDaemon ? true,
withAudioBackend ? "rodio", # alsa, pulseaudio, rodio, portaudio, jackaudio, rodiojack, sdl, gstreamer
withMediaControl ? true,
withImage ? true,
withNotify ? true,
withSixel ? true,
withFuzzy ? true,
stdenv,
makeBinaryWrapper,
}:
assert lib.assertOneOf "withAudioBackend" withAudioBackend [
""
"alsa"
"pulseaudio"
"rodio"
"portaudio"
"jackaudio"
"rodiojack"
"sdl"
"gstreamer"
];
rustPlatform.buildRustPackage rec {
pname = "spotify-player";
version =
let
toml = builtins.fromTOML (builtins.readFile ./spotify_player/Cargo.toml);
in
toml.package.version;
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [
pkg-config
cmake
rustPlatform.bindgenHook
installShellFiles
autoconf
automake
libtool
# Tries to access $HOME when installing shell files, and on Darwin
writableTmpDirAsHomeHook
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
makeBinaryWrapper
];
buildInputs = [
openssl
dbus
fontconfig
]
++ lib.optionals withSixel [ libsixel ]
++ lib.optionals (withAudioBackend == "alsa") [ alsa-lib ]
++ lib.optionals (withAudioBackend == "pulseaudio") [ libpulseaudio ]
++ lib.optionals (withAudioBackend == "rodio" && stdenv.hostPlatform.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
];
buildNoDefaultFeatures = true;
buildFeatures =
[ ]
++ lib.optionals (withAudioBackend != "") [ "${withAudioBackend}-backend" ]
++ lib.optionals withMediaControl [ "media-control" ]
++ lib.optionals withImage [ "image" ]
++ lib.optionals withDaemon [ "daemon" ]
++ lib.optionals withNotify [ "notify" ]
++ lib.optionals withStreaming [ "streaming" ]
++ lib.optionals withSixel [ "sixel" ]
++ lib.optionals withFuzzy [ "fzf" ];
postInstall =
let
inherit (lib.strings) optionalString;
in
# sixel-sys is dynamically linked to libsixel
optionalString (stdenv.hostPlatform.isDarwin && withSixel) ''
wrapProgram $out/bin/spotify_player \
--prefix DYLD_LIBRARY_PATH : "${lib.makeLibraryPath [ libsixel ]}"
''
+ optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd spotify_player \
--bash <($out/bin/spotify_player generate bash) \
--fish <($out/bin/spotify_player generate fish) \
--zsh <($out/bin/spotify_player generate zsh)
'';
meta = {
description = "Terminal spotify player that has feature parity with the official client";
homepage = "https://github.com/aome510/spotify-player";
changelog = "https://github.com/aome510/spotify-player/releases/tag/v${version}";
mainProgram = "spotify_player";
license = lib.licenses.mit;
};
}