depot/third_party/nixpkgs/pkgs/tools/text/mdbook-man/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

23 lines
618 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "mdbook-man";
version = "unstable-2022-11-05";
src = fetchFromGitHub {
owner = "vv9k";
repo = pname;
rev = "b9537dfbb241d7456835ed7e9d27ab8c8184e5f6";
hash = "sha256-ssAk60jnwYzAjseL26/3FaDv1vBAylgdE+vLhWZ8It4=";
};
cargoHash = "sha256-cR86eFhP9Swh+Ff8FNbAfWpWMkliOAyPwDQ6lRvU+nk=";
meta = with lib; {
description = "Generate manual pages from mdBooks";
homepage = "https://github.com/vv9k/mdbook-man";
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
};
}