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:
parent
b6cc2f2979
commit
4830391e71
50
pkgs/applications/video/youtube-tui/default.nix
Normal file
50
pkgs/applications/video/youtube-tui/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user