nixpkgs/pkgs/applications/audio/spotifyd/default.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

2019-07-20 17:38:53 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl
, withALSA ? true, alsaLib ? null
, withPulseAudio ? false, libpulseaudio ? null
, withPortAudio ? false, portaudio ? null
, withMpris ? false
, withKeyring ? false
, dbus ? null
2019-07-20 17:38:53 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "spotifyd";
2020-01-27 20:28:36 +00:00
version = "0.2.24";
2019-07-20 17:38:53 +00:00
src = fetchFromGitHub {
owner = "Spotifyd";
repo = "spotifyd";
2019-09-21 07:00:00 +00:00
rev = "v${version}";
2020-01-27 20:28:36 +00:00
sha256 = "08i0zm7kgprixqjpgaxk7xid1njgj6lmi896jf9fsjqzdzlblqk8";
2019-07-20 17:38:53 +00:00
};
cargoSha256 = "0200apqbx769ggjnjr0m72g61ikhml2xak5n1il2pvfx1yf5nw0n";
2019-07-20 17:38:53 +00:00
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,"}"
2019-07-20 17:38:53 +00:00
];
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;
2019-07-20 17:38:53 +00:00
2019-09-21 07:00:00 +00:00
doCheck = false;
2019-07-20 17:38:53 +00:00
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 ];
2019-11-24 18:05:06 +00:00
maintainers = with maintainers; [ anderslundstedt filalex77 marsam ];
2019-07-20 17:38:53 +00:00
platforms = platforms.unix;
};
}