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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, 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}";
hash = "sha256-L5gg6tjQuYoAC89XfKE38KCFONwSAwfNoFEUPH4jNAI=";
2019-10-12 13:22:04 +00:00
};
cargoLock = {
lockFile = ./Cargo.lock;
};
2019-10-29 09:20:00 +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
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}
'';
postInstall = ''
for shell in bash fish zsh; do
$out/bin/spt --completions $shell > spt.$shell
installShellCompletion spt.$shell
done
'';
meta = with lib; {
2019-10-12 13:22:04 +00:00
description = "Spotify for the terminal written in Rust";
homepage = "https://github.com/Rigellute/spotify-tui";
changelog = "https://github.com/Rigellute/spotify-tui/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit /* or */ asl20 ];
2019-10-12 13:22:04 +00:00
maintainers = with maintainers; [ jwijenbergh ];
mainProgram = "spt";
2019-10-12 13:22:04 +00:00
};
}