mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
25 lines
650 B
Nix
25 lines
650 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";
|
|
mainProgram = "mdbook-man";
|
|
homepage = "https://github.com/vv9k/mdbook-man";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
};
|
|
}
|
|
|