Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
661 B
Nix
28 lines
661 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "mdbook-man";
|
|
version = "0-unstable-2022-11-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vv9k";
|
|
repo = "mdbook-man";
|
|
rev = "b9537dfbb241d7456835ed7e9d27ab8c8184e5f6";
|
|
hash = "sha256-ssAk60jnwYzAjseL26/3FaDv1vBAylgdE+vLhWZ8It4=";
|
|
};
|
|
|
|
cargoHash = "sha256-+CD7+pYAoKRmkMZPpEru6lug9sBakrL0rLXs78e3tqk=";
|
|
|
|
meta = with lib; {
|
|
description = "Generate manual pages from mdBooks";
|
|
mainProgram = "mdbook-man";
|
|
homepage = "https://github.com/vv9k/mdbook-man";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
};
|
|
}
|