1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 17:10:48 +00:00
nixpkgs/pkgs/applications/audio/spotify-tui/default.nix

29 lines
984 B
Nix
Raw Normal View History

2019-11-30 16:00:55 +00:00
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, python3, libxcb, AppKit, Security }:
2019-10-12 14:22:04 +01:00
rustPlatform.buildRustPackage rec {
pname = "spotify-tui";
2020-07-28 01:42:55 +01:00
version = "0.21.0";
2019-10-16 13:38:18 +01:00
2019-10-12 14:22:04 +01:00
src = fetchFromGitHub {
owner = "Rigellute";
repo = "spotify-tui";
2019-10-16 13:38:18 +01:00
rev = "v${version}";
2020-07-28 01:42:55 +01:00
sha256 = "0pvgq8r1bb7bdxm50hxl0n7ajplpzp1gnf6j55dn6xwck0syml9y";
2019-10-12 14:22:04 +01:00
};
2020-07-28 01:42:55 +01:00
cargoSha256 = "07v1qm5ky99j2lwbl00g80z0f8hfrpwgyqsm8fnda6y9s3vzzdgz";
2019-10-29 09:20:00 +00:00
2020-05-05 10:20:00 +01:00
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkgconfig python3 ];
buildInputs = [ ]
++ stdenv.lib.optionals stdenv.isLinux [ openssl libxcb ]
2019-11-30 16:00:55 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Security ];
2019-10-12 14:22:04 +01:00
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}";
2019-10-12 14:22:04 +01:00
license = licenses.mit;
maintainers = with maintainers; [ jwijenbergh ];
};
}