2019-11-30 17:00:55 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
|
2019-10-12 15:22:04 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "spotify-tui";
|
2020-02-14 20:03:19 +01:00
|
|
|
version = "0.14.0";
|
2019-10-16 14:38:18 +02:00
|
|
|
|
2019-10-12 15:22:04 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Rigellute";
|
|
|
|
repo = "spotify-tui";
|
2019-10-16 14:38:18 +02:00
|
|
|
rev = "v${version}";
|
2020-02-14 20:03:19 +01:00
|
|
|
sha256 = "06xqj83m4hz00p8796m0df7lv9875p8zc1v6l9yqbiak1h95lq7h";
|
2019-10-12 15:22:04 +02:00
|
|
|
};
|
|
|
|
|
2020-02-14 20:03:19 +01:00
|
|
|
legacyCargoFetcher = false;
|
2020-02-14 03:00:26 +01:00
|
|
|
|
2020-02-14 20:03:19 +01:00
|
|
|
cargoSha256 = "1pc4n6lm1w0660ivm0kxzicpckvb351y62dpv0cxa7ckd3raa5pr";
|
2019-10-29 10:20:00 +01:00
|
|
|
|
2019-12-23 13:40:00 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ stdenv.lib.optionals stdenv.isLinux [ python3 ];
|
2019-10-12 18:28:15 +02:00
|
|
|
buildInputs = [ openssl ]
|
2019-11-30 17:00:55 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isLinux libxcb
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
|
2019-10-12 15:22:04 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Spotify for the terminal written in Rust";
|
|
|
|
homepage = https://github.com/Rigellute/spotify-tui;
|
2020-01-31 10:20:00 +01:00
|
|
|
changelog = "https://github.com/Rigellute/spotify-tui/releases/tag/v${version}";
|
2019-10-12 15:22:04 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jwijenbergh ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|