2019-11-30 16:00:55 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
|
2019-10-12 14:22:04 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "spotify-tui";
|
2019-11-30 16:00:55 +00:00
|
|
|
version = "0.10.0";
|
2019-10-16 13:38:18 +01:00
|
|
|
|
2019-10-12 14:22:04 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Rigellute";
|
|
|
|
repo = "spotify-tui";
|
2019-10-16 13:38:18 +01:00
|
|
|
rev = "v${version}";
|
2019-11-30 16:00:55 +00:00
|
|
|
sha256 = "10wrlfi50lsf6qjsi9qklw2mk2fbf0jib7f841v842l9k9zw0hrg";
|
2019-10-12 14:22:04 +01:00
|
|
|
};
|
|
|
|
|
2019-11-30 16:00:55 +00:00
|
|
|
cargoSha256 = "140m3pryvbc96xvl5ymz68msrx93rmvvy0y8skvc40yxwl401inc";
|
2019-10-29 09:20:00 +00:00
|
|
|
|
2019-11-30 16:00:55 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig python3 ];
|
2019-10-12 17:28:15 +01:00
|
|
|
buildInputs = [ openssl ]
|
2019-11-30 16:00:55 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isLinux libxcb
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
|
2019-10-12 14:22:04 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Spotify for the terminal written in Rust";
|
|
|
|
homepage = https://github.com/Rigellute/spotify-tui;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jwijenbergh ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|