mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
60 lines
1.6 KiB
Nix
60 lines
1.6 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, pkg-config
|
|
, stdenv
|
|
, openssl
|
|
, withALSA ? stdenv.hostPlatform.isLinux
|
|
, alsa-lib
|
|
, alsa-plugins
|
|
, withPortAudio ? false
|
|
, portaudio
|
|
, withPulseAudio ? false
|
|
, libpulseaudio
|
|
, withRodio ? true
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "librespot";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "librespot-org";
|
|
repo = "librespot";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/YMICsrUMYqiL5jMlb5BbZPlHfL9btbWiv/Kt2xhRW4=";
|
|
};
|
|
|
|
cargoHash = "sha256-UOvGvseWaEqqjuvTewDfkBeR730cKMQCq55weYmu15Y=";
|
|
|
|
nativeBuildInputs = [ pkg-config makeWrapper ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optional withALSA alsa-lib
|
|
++ lib.optional withPortAudio portaudio
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
|
|
|
buildNoDefaultFeatures = true;
|
|
buildFeatures = lib.optional withRodio "rodio-backend"
|
|
++ lib.optional withALSA "alsa-backend"
|
|
++ lib.optional withPortAudio "portaudio-backend"
|
|
++ lib.optional withPulseAudio "pulseaudio-backend";
|
|
|
|
postFixup = lib.optionalString withALSA ''
|
|
wrapProgram "$out/bin/librespot" \
|
|
--set ALSA_PLUGIN_DIR '${alsa-plugins}/lib/alsa-lib'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open Source Spotify client library and playback daemon";
|
|
mainProgram = "librespot";
|
|
homepage = "https://github.com/librespot-org/librespot";
|
|
changelog = "https://github.com/librespot-org/librespot/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ bennofs ];
|
|
};
|
|
}
|