nixpkgs/pkgs/applications/video/youtube-tui/default.nix
2023-05-29 18:43:26 +00:00

51 lines
916 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, xorg
, stdenv
, python3
, libsixel
, CoreFoundation
, Security
, AppKit
,
}:
rustPlatform.buildRustPackage rec {
pname = "youtube-tui";
version = "0.7.2";
src = fetchFromGitHub {
owner = "Siriusmart";
repo = pname;
rev = "v${version}";
hash = "sha256-gogV/+zo/Spg5d8Fh4gDTJL4ojdWbB6mDbppF0i+H20=";
};
cargoHash = "sha256-TUq/Kix+Z+rELN7x3/gmFOtpa1bj/xakiYDYSyVtA/s=";
nativeBuildInputs = [
pkg-config
python3
];
buildInputs = [
openssl
xorg.libxcb
libsixel
] ++ lib.optionals stdenv.isDarwin [
CoreFoundation
Security
AppKit
];
meta = with lib; {
description = "An aesthetically pleasing YouTube TUI written in Rust";
homepage = "https://siriusmart.github.io/youtube-tui";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Ruixi-rebirth ];
};
}