5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
28 lines
644 B
Nix
28 lines
644 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
}:
|
|
|
|
let
|
|
pname = "mdbook-yml-header";
|
|
version = "0.1.4";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-qRAqZUKOiXTh4cJjczBQ9zAL6voaDvko7elfE6eB2jA=";
|
|
};
|
|
|
|
cargoHash = "sha256-cn+R36koBSEp+wKtCQJK/L+mxeb8sHkZu8kWYRigIvw=";
|
|
|
|
meta = {
|
|
description = "MdBook preprocessor for removing yml header within --- (front-matter)";
|
|
homepage = "https://github.com/dvogt23/mdbook-yml-header";
|
|
license = lib.licenses.mpl20;
|
|
mainProgram = "mdbook-yml-header";
|
|
maintainers = [ lib.maintainers.pinage404 ];
|
|
};
|
|
}
|