biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / mdbook-katex / default.nix
blob0c2c53825b7efdd1312fdfe859dd6ffd0a8c08e9
1 { lib, rustPlatform, fetchCrate, stdenv, CoreServices }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mdbook-katex";
5   version = "0.9.0";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-OTMPf/ZlUtqKz8Lb0uFOhad33N6SaCIZ86I2ajZ19fU=";
10   };
12   cargoHash = "sha256-U8uDcNkEyz7zAqCTthY5SVGshsJRKRaoBLOpBpQ9sho=";
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   };