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

36 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, pkg-config, openssl, python3, libxcb, AppKit, Security }:
2019-10-12 15:22:04 +02:00
rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
2021-08-24 12:28:04 +02:00
version = "0.25.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}";
2021-08-24 12:28:04 +02:00
sha256 = "sha256-L5gg6tjQuYoAC89XfKE38KCFONwSAwfNoFEUPH4jNAI=";
2019-10-12 15:22:04 +02:00
};
2021-08-24 12:28:04 +02:00
cargoSha256 = "sha256-iucI4/iMF+uXRlnMttobu4xo3IQXq7tGiSSN8eCrLM0=";
2019-10-29 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config python3 ];
2020-05-05 11:20:00 +02:00
buildInputs = [ ]
2021-01-15 14:21:58 +01:00
++ lib.optionals stdenv.isLinux [ openssl libxcb ]
++ lib.optionals stdenv.isDarwin [ AppKit Security ];
2019-10-12 15:22:04 +02:00
postInstall = ''
for shell in bash fish zsh; do
$out/bin/spt --completions $shell > spt.$shell
installShellCompletion spt.$shell
done
'';
meta = with lib; {
2019-10-12 15:22:04 +02:00
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 15:22:04 +02:00
license = licenses.mit;
maintainers = with maintainers; [ jwijenbergh ];
};
}