mdbook-bib: init at 0.5.2 (#505562)

This commit is contained in:
Pol Dellaiera
2026-05-15 10:48:29 +00:00
committed by GitHub
2 changed files with 44 additions and 0 deletions
+5
View File
@@ -16875,6 +16875,11 @@
name = "Marcus";
matrix = "@marker06:matrix.org";
};
markhakansson = {
name = "Mark Håkansson";
github = "markhakansson";
githubId = 44841869;
};
markus1189 = {
email = "markus1189@gmail.com";
github = "markus1189";
+39
View File
@@ -0,0 +1,39 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "mdbook-bib";
version = "0.5.2";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "francisco-perez-sorrosal";
repo = "mdbook-bib";
tag = "v${finalAttrs.version}";
hash = "sha256-xgGJYnOYUuxHs2sXzYKSZd0jLm/x/PoPsNHQcWpXkn8=";
};
cargoHash = "sha256-QyP+Mw/95NvjaAkr5eoeC49nLXCE9/TMPIWahJayqBQ=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = {
description = "mdBook plugin for creating a bibliography & citations in your books";
homepage = "https://github.com/francisco-perez-sorrosal/mdbook-bib";
changelog = "https://github.com/francisco-perez-sorrosal/mdbook-bib/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ markhakansson ];
mainProgram = "mdbook-bib";
};
})