mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pandoc-katex: init at 0.1.9
This commit is contained in:
parent
579d193f84
commit
560ab4f715
22
pkgs/tools/misc/pandoc-katex/default.nix
Normal file
22
pkgs/tools/misc/pandoc-katex/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pandoc-katex";
|
||||
version = "0.1.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xu-cheng";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-Sd+f1a3Y4XwSj5BupAH35UK6gQxzLy5jJCtc77R9wnM=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-PVEQTzkkD6V9DqcIHznfnO1wOARSxutLApaO9dlokTQ=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pandoc filter to render math equations using KaTeX";
|
||||
homepage = "https://github.com/xu-cheng/pandoc-katex";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
maintainers = with maintainers; [ minijackson pacien ];
|
||||
};
|
||||
}
|
@ -9174,6 +9174,8 @@ with pkgs;
|
||||
|
||||
pandoc-drawio-filter = python3Packages.callPackage ../tools/misc/pandoc-drawio-filter { };
|
||||
|
||||
pandoc-katex = callPackage ../tools/misc/pandoc-katex { };
|
||||
|
||||
pandoc-plantuml-filter = python3Packages.callPackage ../tools/misc/pandoc-plantuml-filter { };
|
||||
|
||||
# pandoc-*nos is a filter suite, where pandoc-xnos has all functionality and the others are used for only specific functionality
|
||||
|
Loading…
Reference in New Issue
Block a user