Skip to content

Commit

Permalink
Merge pull request #192295 from matthiasbeyer/add-mdbook-open-on-gh
Browse files Browse the repository at this point in the history
mdbook-open-on-gh: init at 2.2.0
  • Loading branch information
figsoda committed Sep 22, 2022
2 parents edcea81 + 3f89093 commit 866be16
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/tools/text/mdbook-open-on-gh/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8339,6 +8339,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;
};
Expand Down

0 comments on commit 866be16

Please sign in to comment.