2022-10-07 07:31:47 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2023-05-12 21:08:29 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
2022-10-07 07:31:47 +00:00
|
|
|
, installShellFiles
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
, python3
|
|
|
|
, libxcb
|
|
|
|
, AppKit
|
|
|
|
, Security
|
|
|
|
}:
|
2019-10-12 13:22:04 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "spotify-tui";
|
2021-08-24 10:28:04 +00:00
|
|
|
version = "0.25.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}";
|
2022-10-07 07:31:47 +00:00
|
|
|
hash = "sha256-L5gg6tjQuYoAC89XfKE38KCFONwSAwfNoFEUPH4jNAI=";
|
2019-10-12 13:22:04 +00:00
|
|
|
};
|
|
|
|
|
2023-05-12 21:08:29 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
};
|
2019-10-29 09:20:00 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config python3 ];
|
2020-05-05 09:20:00 +00:00
|
|
|
buildInputs = [ ]
|
2021-01-15 13:21:58 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ openssl libxcb ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ AppKit Security ];
|
2019-10-12 13:22:04 +00:00
|
|
|
|
2023-05-12 21:08:29 +00:00
|
|
|
postPatch = ''
|
|
|
|
# update Cargo.lock to fix build
|
|
|
|
ln -sf ${./Cargo.lock} Cargo.lock
|
|
|
|
|
|
|
|
# Add patch adding the collection variant to rspotify used by spotify-tu
|
|
|
|
# This fixes the issue of getting an error when playing liked songs
|
|
|
|
# see https://github.com/NixOS/nixpkgs/pull/170915
|
|
|
|
patch -p1 -d $cargoDepsCopy/rspotify-0.10.0 < ${./0001-Add-Collection-SearchType.patch}
|
|
|
|
'';
|
|
|
|
|
2021-01-06 10:32:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/spt --completions $shell > spt.$shell
|
|
|
|
installShellCompletion spt.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-12 13:22:04 +00:00
|
|
|
description = "Spotify for the terminal written in Rust";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Rigellute/spotify-tui";
|
2021-01-06 10:32:00 +00:00
|
|
|
changelog = "https://github.com/Rigellute/spotify-tui/blob/v${version}/CHANGELOG.md";
|
2023-05-12 21:08:29 +00:00
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
2019-10-12 13:22:04 +00:00
|
|
|
maintainers = with maintainers; [ jwijenbergh ];
|
2022-04-01 19:34:55 +00:00
|
|
|
mainProgram = "spt";
|
2019-10-12 13:22:04 +00:00
|
|
|
};
|
|
|
|
}
|