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

43 lines
1.3 KiB
Nix
Raw Normal View History

2019-07-20 19:38:53 +02:00
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl
, withALSA ? true, alsaLib ? null
, withPulseAudio ? false, libpulseaudio ? null
, withPortAudio ? false, portaudio ? null
}:
rustPlatform.buildRustPackage rec {
pname = "spotifyd";
2019-11-24 19:03:08 +01:00
version = "0.2.20";
2019-07-20 19:38:53 +02:00
src = fetchFromGitHub {
owner = "Spotifyd";
repo = "spotifyd";
2019-09-21 09:00:00 +02:00
rev = "v${version}";
2019-11-24 19:03:08 +01:00
sha256 = "1hf4wpk7r0s4jpjhxaz67y1hd8jx9ns5imd85r3cdg4lxf3j5gph";
2019-07-20 19:38:53 +02:00
};
2019-11-24 19:03:08 +01:00
cargoSha256 = "1h3fis47hmxvppiv1icjhgp48nd46gayfcmzfjs34q6jask90n0w";
2019-07-20 19:38:53 +02:00
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;
2019-09-21 09:00:00 +02:00
doCheck = false;
2019-07-20 19:38:53 +02: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 19:05:06 +01:00
maintainers = with maintainers; [ anderslundstedt filalex77 marsam ];
2019-07-20 19:38:53 +02:00
platforms = platforms.unix;
};
}