mdbook-man: init at unstable-2021-08-26

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-09-21 21:40:16 +02:00
parent 866431777b
commit 0015531ddc
No known key found for this signature in database
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "mdbook-man";
version = "unstable-2021-08-26";
src = fetchFromGitHub {
owner = "vv9k";
repo = pname;
rev = "419c91db0fcfcce65a6006ed9ec8415a8b705186";
sha256 = "sha256-NOPyDPQms/YJzjkXjVAFR60gLK4zqOuFSdRvFkZRRxQ=";
};
cargoSha256 = "sha256-NyeB2vI9Za5T1SKrjqwTi8LXX7A+M+2r/n1u2qtnK5g=";
meta = with lib; {
description = "Generate manual pages from mdBooks";
homepage = "https://github.com/vv9k/mdbook-man";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
};
}

View File

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