croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / tools / text / mdbook-katex / default.nix
blobbf3c4a643b7c5ab6e30fc5ddc09503cdecbcf6a0
2   lib,
3   rustPlatform,
4   fetchCrate,
5   stdenv,
6   CoreServices,
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "mdbook-katex";
11   version = "0.9.2";
13   src = fetchCrate {
14     inherit pname version;
15     hash = "sha256-O2hFv/9pqrs8cSDvHLAUnXx4mX6TN8hvPLroWgoCgwE=";
16   };
18   cargoHash = "sha256-ONZZ6D0Ien0wakjhy6P2lhx0AnRLH0xpuYon+N9Crg8=";
20   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
22   meta = with lib; {
23     description = "Preprocessor for mdbook, rendering LaTeX equations to HTML at build time";
24     mainProgram = "mdbook-katex";
25     homepage = "https://github.com/lzanini/${pname}";
26     license = [ licenses.mit ];
27     maintainers = with maintainers; [
28       lovesegfault
29       matthiasbeyer
30     ];
31   };