2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, pkg-config, openssl, python3, libxcb, AppKit, Security }:
|
2019-10-12 13:22:04 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "spotify-tui";
|
2021-01-06 10:32:00 +00:00
|
|
|
version = "0.23.0";
|
2019-10-16 12:38:18 +00:00
|
|
|
|
2019-10-12 13:22:04 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Rigellute";
|
|
|
|
repo = "spotify-tui";
|
2019-10-16 12:38:18 +00:00
|
|
|
rev = "v${version}";
|
2021-01-06 10:32:00 +00:00
|
|
|
sha256 = "082y5m2vglzx9kdc2088zynz0njcnljnb0y170igmlsxq9wkrgg2";
|
2019-10-12 13:22:04 +00:00
|
|
|
};
|
|
|
|
|
2021-01-06 10:32:00 +00:00
|
|
|
cargoSha256 = "100c7x603qyhav3p24clwfal4ngh0258x9lqsi84kcj4wq2f3i8f";
|
2019-10-29 09:20:00 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config python3 ];
|
2020-05-05 09:20:00 +00:00
|
|
|
buildInputs = [ ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ openssl libxcb ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ AppKit Security ];
|
2019-10-12 13:22:04 +00:00
|
|
|
|
2021-01-06 10:32:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/spt --completions $shell > spt.$shell
|
|
|
|
installShellCompletion spt.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-12 13:22:04 +00:00
|
|
|
description = "Spotify for the terminal written in Rust";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Rigellute/spotify-tui";
|
2021-01-06 10:32:00 +00:00
|
|
|
changelog = "https://github.com/Rigellute/spotify-tui/blob/v${version}/CHANGELOG.md";
|
2019-10-12 13:22:04 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jwijenbergh ];
|
|
|
|
};
|
|
|
|
}
|