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

47 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPackages, pkgconfig, openssl
2019-07-20 17:38:53 +00:00
, 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
}:
rustPackages.rustPlatform.buildRustPackage rec {
2019-07-20 17:38:53 +00:00
pname = "spotifyd";
version = "0.3.0";
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}";
sha256 = "055njhy9if4qpsbgbr6615xxhcx9plava1m4l323vi4dbw09wh5r";
2019-07-20 17:38:53 +00:00
};
cargoSha256 = "1ijrl208607abjwpr3cajcbj6sr35bk6ik778a58zf28kzdhrawc";
2019-07-20 17:38:53 +00:00
cargoBuildFlags = [
"--no-default-features"
"--features"
2021-01-15 13:21:58 +00:00
"${lib.optionalString withALSA "alsa_backend,"}${lib.optionalString withPulseAudio "pulseaudio_backend,"}${lib.optionalString withPortAudio "portaudio_backend,"}${lib.optionalString withMpris "dbus_mpris,"}${lib.optionalString withKeyring "dbus_keyring,"}"
2019-07-20 17:38:53 +00:00
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ]
2021-01-15 13:21:58 +00:00
++ lib.optional withALSA alsaLib
++ lib.optional withPulseAudio libpulseaudio
++ lib.optional withPortAudio portaudio
++ lib.optional (withMpris || withKeyring) dbus;
2019-07-20 17:38:53 +00:00
2019-09-21 07:00:00 +00:00
doCheck = false;
meta = with lib; {
2019-07-20 17:38:53 +00:00
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 Br1ght0ne marsam ];
2019-07-20 17:38:53 +00:00
platforms = platforms.unix;
};
}