mdbook-open-on-gh: init at 2.2.0

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-09-21 21:41:53 +02:00
parent bd34f13b2c
commit 3f89093784
No known key found for this signature in database
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "mdbook-open-on-gh";
version = "2.2.0";
src = fetchFromGitHub {
owner = "badboy";
repo = pname;
rev = "2.2.0";
sha256 = "sha256-x7ESuXoF5dYnJZpgDyYliVixCG4w/VX/Vhm3VqxsiEI=";
};
cargoSha256 = "sha256-FVcCzL0jJ827HHS/9G597QjNFY3HLNYHCPWcepEulD0=";
meta = with lib; {
description = "mdbook preprocessor to add a open-on-github link on every page";
homepage = "https://github.com/badboy/mdbook-open-on-gh";
license = [ licenses.mpl20 ];
maintainers = with maintainers; [ matthiasbeyer ];
};
}

View file

@ -8320,6 +8320,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
mdbook-open-on-gh = callPackage ../tools/text/mdbook-open-on-gh { };
mdbook-mermaid = callPackage ../tools/text/mdbook-mermaid {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};