anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / text / mdbook-katex / default.nix
blobf87e3491a1843a83d0ca752a4ee5678923a3b1bc
1 { lib, rustPlatform, fetchCrate, stdenv, CoreServices }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mdbook-katex";
5   version = "0.9.1";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-F+yNfXBTAg9S6R85bGStumr1OXdWN3o95TxC0qgUeME=";
10   };
12   cargoHash = "sha256-01lr6ZS+7MmgKmuP+xEX7j1x2qDofmzeevUqY/UqRUw=";
14   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
16   meta = with lib; {
17     description = "Preprocessor for mdbook, rendering LaTeX equations to HTML at build time";
18     mainProgram = "mdbook-katex";
19     homepage = "https://github.com/lzanini/${pname}";
20     license = [ licenses.mit ];
21     maintainers = with maintainers; [ lovesegfault matthiasbeyer ];
22   };