mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
131a32a5af
As mentioned in #79975, the default on `legacyCargoFetcher` if left unspecified is now `false`.
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.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rigellute";
|
|
repo = "spotify-tui";
|
|
rev = "v${version}";
|
|
sha256 = "06xqj83m4hz00p8796m0df7lv9875p8zc1v6l9yqbiak1h95lq7h";
|
|
};
|
|
|
|
cargoSha256 = "1pc4n6lm1w0660ivm0kxzicpckvb351y62dpv0cxa7ckd3raa5pr";
|
|
|
|
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;
|
|
};
|
|
}
|