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

30 lines
1,017 B
Nix
Raw Normal View History

2019-11-30 16:00:55 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
2019-10-12 13:22:04 +00:00
rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
2020-04-22 09:20:00 +00:00
version = "0.18.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}";
2020-04-22 09:20:00 +00:00
sha256 = "15icg332iyacdn4ydr4nivblayg4xkcnjh4f0sjnhj4q173v8fq2";
2019-10-12 13:22:04 +00:00
};
2020-04-22 09:20:00 +00:00
cargoSha256 = "0rw8pj74k88rvcr18837g356lwsn2vdq384yma9df462xd2cw823";
2019-10-29 09:20:00 +00:00
nativeBuildInputs = [ pkgconfig ] ++ stdenv.lib.optionals stdenv.isLinux [ python3 ];
2019-10-12 16:28:15 +00:00
buildInputs = [ openssl ]
++ stdenv.lib.optional stdenv.isLinux libxcb
2019-11-30 16:00:55 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
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/releases/tag/v${version}";
2019-10-12 13:22:04 +00:00
license = licenses.mit;
maintainers = with maintainers; [ jwijenbergh ];
platforms = platforms.all;
};
}