mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
30 lines
1,015 B
Nix
30 lines
1,015 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "spotify-tui";
|
|
version = "0.17.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rigellute";
|
|
repo = "spotify-tui";
|
|
rev = "v${version}";
|
|
sha256 = "1jx2qyshqg84l3fm682h8262da0hy68qjjg3dm2i53dxqxrm5ji9";
|
|
};
|
|
|
|
cargoSha256 = "12qwp59gshc9d6nz0s3w03zc8sxqri12vrav94vi54fqagiikinm";
|
|
|
|
nativeBuildInputs = [ pkgconfig ] ++ stdenv.lib.optionals stdenv.isLinux [ python3 ];
|
|
buildInputs = [ openssl ]
|
|
++ stdenv.lib.optional stdenv.isLinux libxcb
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
|
|
|
|
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}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jwijenbergh ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|