youtube-tui: init at 0.7.0

youtube-tui: init at 0.7.0

youtube-tui: init at 0.7.0

youtube-tui: init at 0.7.0

youtube-tui: init at 0.7.0

youtube-tui: init at 0.7.0
This commit is contained in:
Ruixi-rebirth 2023-03-07 06:33:49 +08:00
parent b6cc2f2979
commit 4830391e71
No known key found for this signature in database
GPG Key ID: B26EAEB7189F30B4
2 changed files with 54 additions and 0 deletions

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

@ -34610,6 +34610,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;