86 lines
2.6 KiB
Nix
86 lines
2.6 KiB
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, fetchFromGitHub
|
||
|
, rustPlatform
|
||
|
, pkg-config
|
||
|
, ncurses
|
||
|
, openssl
|
||
|
, darwin
|
||
|
, withALSA ? stdenv.isLinux, alsa-lib
|
||
|
, withClipboard ? true, libxcb, python3
|
||
|
, withCover ? false, ueberzug
|
||
|
, withPulseAudio ? stdenv.isLinux, libpulseaudio
|
||
|
, withPortAudio ? stdenv.isDarwin, portaudio
|
||
|
, withMPRIS ? stdenv.isLinux, withNotify ? true, dbus
|
||
|
, withCrossterm ? true
|
||
|
, nix-update-script
|
||
|
, testers
|
||
|
, ncspot
|
||
|
}: let
|
||
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||
|
in
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "ncspot";
|
||
|
version = "1.1.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "hrkfdn";
|
||
|
repo = "ncspot";
|
||
|
rev = "4ac180816da1d5caab356e71c8c56570e26ba1e8";
|
||
|
hash = "sha256-2WGFvugH/U2GH6/a/uSG0sbuu14u2BItKlc9esvueQc=";
|
||
|
};
|
||
|
|
||
|
cargoLock = {
|
||
|
lockFile = ./Cargo.lock;
|
||
|
outputHashes = {
|
||
|
"librespot-audio-0.5.0-dev" = "sha256-0LjNHLgZ91UrC3qefXzR4Pl+eh6+vyrkG2qaPDwWpAg=";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config ]
|
||
|
++ lib.optional withClipboard python3;
|
||
|
|
||
|
buildInputs = [ ncurses ]
|
||
|
++ lib.optional stdenv.isLinux openssl
|
||
|
++ lib.optional withALSA alsa-lib
|
||
|
++ lib.optional withClipboard libxcb
|
||
|
++ lib.optional withCover ueberzug
|
||
|
++ lib.optional withPulseAudio libpulseaudio
|
||
|
++ lib.optional withPortAudio portaudio
|
||
|
++ lib.optional (withMPRIS || withNotify) dbus
|
||
|
++ lib.optional stdenv.isDarwin Cocoa;
|
||
|
|
||
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-DNCURSES_UNCTRL_H_incl";
|
||
|
|
||
|
buildNoDefaultFeatures = true;
|
||
|
|
||
|
buildFeatures = [ "cursive/pancurses-backend" ]
|
||
|
++ lib.optional withALSA "alsa_backend"
|
||
|
++ lib.optional withClipboard "share_clipboard"
|
||
|
++ lib.optional withCover "cover"
|
||
|
++ lib.optional withPulseAudio "pulseaudio_backend"
|
||
|
++ lib.optional withPortAudio "portaudio_backend"
|
||
|
++ lib.optional withMPRIS "mpris"
|
||
|
++ lib.optional withCrossterm "crossterm_backend"
|
||
|
++ lib.optional withNotify "notify";
|
||
|
|
||
|
postInstall = ''
|
||
|
install -D --mode=444 $src/misc/ncspot.desktop $out/share/applications/${pname}.desktop
|
||
|
install -D --mode=444 $src/images/logo.svg $out/share/icons/hicolor/scalable/apps/${pname}.png
|
||
|
'';
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = nix-update-script { };
|
||
|
tests.version = testers.testVersion { package = ncspot; };
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes";
|
||
|
homepage = "https://github.com/hrkfdn/ncspot";
|
||
|
changelog = "https://github.com/hrkfdn/ncspot/releases/tag/v${version}";
|
||
|
license = licenses.bsd2;
|
||
|
maintainers = with maintainers; [ liff ];
|
||
|
mainProgram = "ncspot";
|
||
|
};
|
||
|
}
|