mdbook-variables: init at 0.2.4 (#355106)

This commit is contained in:
Aleksana 2024-11-13 10:56:23 +08:00 committed by GitHub
commit bc8f8d1be5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View File

@ -11835,6 +11835,12 @@
githubId = 26622971;
name = "Ronnie Ebrin";
};
kraftnix = {
email = "kraftnix@protonmail.com";
github = "kraftnix";
githubId = 83026656;
name = "kraftnix";
};
kragniz = {
email = "louis@kragniz.eu";
github = "kragniz";

View File

@ -0,0 +1,32 @@
{
lib,
rustPlatform,
fetchFromGitLab,
versionCheckHook,
}:
rustPlatform.buildRustPackage rec {
pname = "mdbook-variables";
version = "0.2.4";
src = fetchFromGitLab {
owner = "tglman";
repo = "mdbook-variables";
rev = version;
hash = "sha256-whvRCV1g2avKegfQpMgYi+E6ETxT2tQqVS2SWRpAqF8=";
};
cargoHash = "sha256-uw1oWIoKi6qsObI4SkEiHwEj9QoxE9jufu9O+ZKM8DI=";
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
meta = {
description = "mdBook preprocessor to replace values with env variables";
mainProgram = "mdbook-variables";
homepage = "https://gitlab.com/tglman/mdbook-variables";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ kraftnix ];
};
}