47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, pkg-config, ncurses, openssl
|
|
, withALSA ? true, alsaLib ? null
|
|
, withPulseAudio ? false, libpulseaudio ? null
|
|
, withPortAudio ? false, portaudio ? null
|
|
, withMPRIS ? false, dbus ? null
|
|
}:
|
|
|
|
let
|
|
features = [ "cursive/pancurses-backend" ]
|
|
++ lib.optional withALSA "alsa_backend"
|
|
++ lib.optional withPulseAudio "pulseaudio_backend"
|
|
++ lib.optional withPortAudio "portaudio_backend"
|
|
++ lib.optional withMPRIS "mpris";
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ncspot";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hrkfdn";
|
|
repo = "ncspot";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-4V0LG9mDvezeLHHTAmfAXdssOAOlZs30b8IejKEKN4g=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-POvIkoxLAXVBTsB37aAEUKhk6DRF9IfvfTcrP5PLFEQ=";
|
|
|
|
cargoBuildFlags = [ "--no-default-features" "--features" "${lib.concatStringsSep "," features}" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ ncurses openssl ]
|
|
++ lib.optional withALSA alsaLib
|
|
++ lib.optional withPulseAudio libpulseaudio
|
|
++ lib.optional withPortAudio portaudio
|
|
++ lib.optional withMPRIS dbus;
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes";
|
|
homepage = "https://github.com/hrkfdn/ncspot";
|
|
license = licenses.bsd2;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|