mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
46 lines
1.5 KiB
Nix
46 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl
|
|
, withALSA ? true, alsaLib ? null
|
|
, withPulseAudio ? false, libpulseaudio ? null
|
|
, withPortAudio ? false, portaudio ? null
|
|
, withMpris ? false
|
|
, withKeyring ? false
|
|
, dbus ? null
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "spotifyd";
|
|
version = "0.2.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Spotifyd";
|
|
repo = "spotifyd";
|
|
rev = "v${version}";
|
|
sha256 = "08i0zm7kgprixqjpgaxk7xid1njgj6lmi896jf9fsjqzdzlblqk8";
|
|
};
|
|
|
|
cargoSha256 = "0200apqbx769ggjnjr0m72g61ikhml2xak5n1il2pvfx1yf5nw0n";
|
|
|
|
cargoBuildFlags = [
|
|
"--no-default-features"
|
|
"--features"
|
|
"${stdenv.lib.optionalString withALSA "alsa_backend,"}${stdenv.lib.optionalString withPulseAudio "pulseaudio_backend,"}${stdenv.lib.optionalString withPortAudio "portaudio_backend,"}${stdenv.lib.optionalString withMpris "dbus_mpris,"}${stdenv.lib.optionalString withKeyring "dbus_keyring,"}"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ stdenv.lib.optional withALSA alsaLib
|
|
++ stdenv.lib.optional withPulseAudio libpulseaudio
|
|
++ stdenv.lib.optional withPortAudio portaudio
|
|
++ stdenv.lib.optional (withMpris || withKeyring) dbus;
|
|
|
|
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;
|
|
};
|
|
}
|