43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl
|
|
, withALSA ? true, alsaLib ? null
|
|
, withPulseAudio ? false, libpulseaudio ? null
|
|
, withPortAudio ? false, portaudio ? null
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "spotifyd";
|
|
version = "0.2.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Spotifyd";
|
|
repo = "spotifyd";
|
|
rev = "v${version}";
|
|
sha256 = "1hf4wpk7r0s4jpjhxaz67y1hd8jx9ns5imd85r3cdg4lxf3j5gph";
|
|
};
|
|
|
|
cargoSha256 = "1h3fis47hmxvppiv1icjhgp48nd46gayfcmzfjs34q6jask90n0w";
|
|
|
|
cargoBuildFlags = [
|
|
"--no-default-features"
|
|
"--features"
|
|
"${stdenv.lib.optionalString withALSA "alsa_backend,"}${stdenv.lib.optionalString withPulseAudio "pulseaudio_backend,"}${stdenv.lib.optionalString withPortAudio "portaudio_backend,"}"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ stdenv.lib.optional withALSA alsaLib
|
|
++ stdenv.lib.optional withPulseAudio libpulseaudio
|
|
++ stdenv.lib.optional withPortAudio portaudio;
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An open source Spotify client running as a UNIX daemon";
|
|
homepage = "https://github.com/Spotifyd/spotifyd";
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = with maintainers; [ anderslundstedt filalex77 marsam ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|