From 4830391e718434341699eada1637aa8261297a6a Mon Sep 17 00:00:00 2001 From: Ruixi-rebirth Date: Tue, 7 Mar 2023 06:33:49 +0800 Subject: 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 --- pkgs/applications/video/youtube-tui/default.nix | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 pkgs/applications/video/youtube-tui/default.nix (limited to 'pkgs/applications/video/youtube-tui') diff --git a/pkgs/applications/video/youtube-tui/default.nix b/pkgs/applications/video/youtube-tui/default.nix new file mode 100644 index 000000000000..1ecea6c32183 --- /dev/null +++ b/pkgs/applications/video/youtube-tui/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1