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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, rustPlatform, pkg-config, ncurses, openssl
2022-01-24 17:09:41 +01:00
, withALSA ? true, alsa-lib
, withPulseAudio ? false, libpulseaudio
, withPortAudio ? false, portaudio
, withMPRIS ? false, dbus
2019-10-18 11:20:00 +02:00
}:
rustPlatform.buildRustPackage rec {
2019-11-26 10:20:00 +01:00
pname = "ncspot";
2022-12-31 13:18:45 +01:00
version = "0.12.0";
2019-10-18 11:20:00 +02:00
src = fetchFromGitHub {
owner = "hrkfdn";
repo = "ncspot";
rev = "v${version}";
2022-12-31 13:18:45 +01:00
sha256 = "sha256-kqGYBaXmGeGuGJ5fcc4OQzHISU8fVuQNGwiD8nyPa/0=";
2019-10-18 11:20:00 +02:00
};
2022-12-31 13:18:45 +01:00
cargoSha256 = "sha256-gVXH2pFtyMfYkCqda9NrqOgczvmxiWHe0zArJfnnrgE=";
2019-10-18 11:20:00 +02:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses ]
++ lib.optional stdenv.isLinux openssl
++ lib.optional withALSA alsa-lib
2019-10-18 11:20:00 +02:00
++ lib.optional withPulseAudio libpulseaudio
2020-03-14 09:39:00 +01:00
++ lib.optional withPortAudio portaudio
++ lib.optional withMPRIS dbus;
2019-10-18 11:20:00 +02:00
2021-10-27 04:43:09 +02:00
buildNoDefaultFeatures = true;
buildFeatures = [ "cursive/pancurses-backend" ]
++ lib.optional withALSA "alsa_backend"
++ lib.optional withPulseAudio "pulseaudio_backend"
++ lib.optional withPortAudio "portaudio_backend"
++ lib.optional withMPRIS "mpris";
2019-10-18 11:20:00 +02:00
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 ];
};
}