lol

to-html: init at 0.1.4

+32
+30
pkgs/tools/text/to-html/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + version = "0.1.4"; 8 + pname = "to-html"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "Aloso"; 12 + repo = "to-html"; 13 + rev = "v${version}"; 14 + hash = "sha256-zkTBjsMFhRz7lVRh8i+XkaJ/qWmTAMPnkH5aDhbHf8U="; 15 + }; 16 + 17 + cargoHash = "sha256-hXc+lB3DKnRZkp1U5wW/vPKSZ0c1UknQCAxDfE7Eubg="; 18 + 19 + # Requires external resources 20 + doCheck = false; 21 + 22 + meta = { 23 + description = "Terminal wrapper for rendering a terminal on a website by converting ANSI escape sequences to HTML."; 24 + homepage = "https://github.com/Aloso/to-html"; 25 + changelog = "https://github.com/Aloso/to-html/blob/${src.rev}/CHANGELOG.md"; 26 + license = lib.licenses.mit; 27 + platforms = lib.platforms.all; 28 + maintainers = with lib.maintainers; [ icewind1991 ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 13422 13422 13423 13423 tncattach = callPackage ../applications/radio/tncattach { }; 13424 13424 13425 + to-html = callPackage ../tools/text/to-html { }; 13426 + 13425 13427 toilet = callPackage ../tools/misc/toilet { }; 13426 13428 13427 13429 tokei = callPackage ../development/tools/misc/tokei {