2022-10-21 18:38:19 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2023-05-24 13:37:59 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, stdenv
|
2022-10-21 18:38:19 +00:00
|
|
|
, installShellFiles
|
|
|
|
, pkg-config
|
|
|
|
, openssl
|
|
|
|
, python3
|
|
|
|
, libxcb
|
|
|
|
, AppKit
|
|
|
|
, Security
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "spotify-tui";
|
2021-08-27 14:25:00 +00:00
|
|
|
version = "0.25.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Rigellute";
|
|
|
|
repo = "spotify-tui";
|
|
|
|
rev = "v${version}";
|
2022-10-21 18:38:19 +00:00
|
|
|
hash = "sha256-L5gg6tjQuYoAC89XfKE38KCFONwSAwfNoFEUPH4jNAI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config python3 ];
|
2020-05-15 21:57:56 +00:00
|
|
|
buildInputs = [ ]
|
2021-01-17 00:15:33 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ openssl libxcb ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ AppKit Security ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-05-24 13:37:59 +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-09 10:05:03 +00:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/spt --completions $shell > spt.$shell
|
|
|
|
installShellCompletion spt.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Spotify for the terminal written in Rust";
|
|
|
|
homepage = "https://github.com/Rigellute/spotify-tui";
|
2021-01-09 10:05:03 +00:00
|
|
|
changelog = "https://github.com/Rigellute/spotify-tui/blob/v${version}/CHANGELOG.md";
|
2023-05-24 13:37:59 +00:00
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ jwijenbergh ];
|
2022-04-27 09:35:20 +00:00
|
|
|
mainProgram = "spt";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|