Merge pull request #219832 from Ruixi-rebirth/master

youtube-tui: init at 0.7.0
This commit is contained in:
Ilan Joselevich 2023-03-07 14:51:43 +02:00 committed by GitHub
commit 29c58c39fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 0 deletions

View file

@ -12953,6 +12953,12 @@
github = "rubyowo";
githubId = 105302757;
};
Ruixi-rebirth = {
name = "Ruixi-rebirth";
email = "ruixirebirth@gmail.com";
github = "Ruixi-rebirth";
githubId = 75824585;
};
rumpelsepp = {
name = "Stefan Tatschner";
email = "stefan@rumpelsepp.org";

View file

@ -0,0 +1,50 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, xorg
, stdenv
, python3
, libsixel
, CoreFoundation
, Security
, AppKit
,
}:
rustPlatform.buildRustPackage rec {
pname = "youtube-tui";
version = "0.7.0";
src = fetchFromGitHub {
owner = "Siriusmart";
repo = pname;
rev = "v${version}";
hash = "sha256-YQj+hmNh8rqP7bKeFDQhZIf79WG7vqg31oReb0jrmg4=";
};
cargoHash = "sha256-qcWuh8qaOQBBebdX3D01k5yXZfifbFC+ZP0d6bJeOr0=";
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 ];
};
}

View file

@ -34617,6 +34617,10 @@ with pkgs;
youtube-music = callPackage ../applications/audio/youtube-music { };
youtube-tui = callPackage ../applications/video/youtube-tui {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
};
youki = callPackage ../applications/virtualization/youki { };
yt-dlp = with python3Packages; toPythonApplication yt-dlp;