29 lines
644 B
Nix
29 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 ];
|
||
|
};
|
||
|
}
|