Merge pull request #214631 from blaggacao/init-mdbook-kroki-preprocessor
mdbook-kroki-preprocessor: init at v0.1.2
This commit is contained in:
commit
46dd2a05e7
2 changed files with 42 additions and 0 deletions
40
pkgs/tools/text/mdbook-kroki-preprocessor/default.nix
Normal file
40
pkgs/tools/text/mdbook-kroki-preprocessor/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
, stdenv
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "mdbook-kroki-preprocessor";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "joelcourtney";
|
||||
repo = "mdbook-kroki-preprocessor";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-1TJuUzfyMycWlOQH67LR63/ll2GDZz25I3JfScy/Jnw=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-IKwDWymAQ1OMQN8Op+DcvqPikoLdOz6lltbhCgOAles=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.CoreFoundation
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Render Kroki diagrams from files or code blocks in mdbook";
|
||||
homepage = "https://github.com/joelcourtney/mdbook-kroki-preprocessor";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ blaggacao ];
|
||||
};
|
||||
}
|
|
@ -9045,6 +9045,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
||||
mdbook-kroki-preprocessor = callPackage ../tools/text/mdbook-kroki-preprocessor { };
|
||||
|
||||
mdbook-linkcheck = callPackage ../tools/text/mdbook-linkcheck {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue