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