silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / by-name / to / to-html / package.nix
blob5ddba61276d457669f903b183b812db781235424
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   version = "0.1.4";
8   pname = "to-html";
10   src = fetchFromGitHub {
11     owner = "Aloso";
12     repo = "to-html";
13     rev = "v${version}";
14     hash = "sha256-zkTBjsMFhRz7lVRh8i+XkaJ/qWmTAMPnkH5aDhbHf8U=";
15   };
17   cargoHash = "sha256-hXc+lB3DKnRZkp1U5wW/vPKSZ0c1UknQCAxDfE7Eubg=";
19   # Requires external resources
20   doCheck = false;
22   meta = {
23     description = "Terminal wrapper for rendering a terminal on a website by converting ANSI escape sequences to HTML";
24     mainProgram = "to-html";
25     homepage = "https://github.com/Aloso/to-html";
26     changelog = "https://github.com/Aloso/to-html/blob/${src.rev}/CHANGELOG.md";
27     license = lib.licenses.mit;
28     platforms = lib.platforms.all;
29     maintainers = with lib.maintainers; [ icewind1991 ];
30   };