nixpkgs/pkgs/applications/audio/spotify-tui/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform, installShellFiles, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
2019-10-12 13:22:04 +00:00
rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
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}";
sha256 = "082y5m2vglzx9kdc2088zynz0njcnljnb0y170igmlsxq9wkrgg2";
2019-10-12 13:22:04 +00:00
};
cargoSha256 = "100c7x603qyhav3p24clwfal4ngh0258x9lqsi84kcj4wq2f3i8f";
2019-10-29 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkgconfig python3 ];
2020-05-05 09:20:00 +00:00
buildInputs = [ ]
++ stdenv.lib.optionals stdenv.isLinux [ openssl libxcb ]
2019-11-30 16:00:55 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
2019-10-12 13:22:04 +00:00
postInstall = ''
for shell in bash fish zsh; do
$out/bin/spt --completions $shell > spt.$shell
installShellCompletion spt.$shell
done
'';
2019-10-12 13:22:04 +00:00
meta = with stdenv.lib; {
description = "Spotify for the terminal written in Rust";
homepage = "https://github.com/Rigellute/spotify-tui";
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 ];
};
}