2023-11-12 14:54:43 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, nix, rustPlatform, CoreServices, installShellFiles }:
|
2018-02-23 10:22:30 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "mdbook";
|
2024-02-07 07:04:10 +00:00
|
|
|
version = "0.4.37";
|
2018-02-23 10:22:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-08-08 07:03:03 +00:00
|
|
|
owner = "rust-lang";
|
2018-02-23 10:22:30 +00:00
|
|
|
repo = "mdBook";
|
2022-12-15 17:29:45 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-07 07:04:10 +00:00
|
|
|
sha256 = "sha256-A8ZSqIG+rGKwggs9ogvbMIi9gClFKe8gS6D5W426ebc=";
|
2018-02-23 10:22:30 +00:00
|
|
|
};
|
|
|
|
|
2024-02-07 07:04:10 +00:00
|
|
|
cargoHash = "sha256-8GQM4pHiFbyoRkOx3SXuIV118ndzL+O+eA+Gd2jbsdI=";
|
2018-02-23 10:22:30 +00:00
|
|
|
|
2023-11-12 14:54:43 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
|
2018-02-23 10:22:30 +00:00
|
|
|
|
2023-11-12 14:54:43 +00:00
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
|
|
installShellCompletion --cmd mdbook \
|
|
|
|
--bash <($out/bin/mdbook completions bash) \
|
|
|
|
--fish <($out/bin/mdbook completions fish) \
|
|
|
|
--zsh <($out/bin/mdbook completions zsh )
|
|
|
|
'';
|
|
|
|
|
2022-07-16 00:45:46 +00:00
|
|
|
passthru = {
|
|
|
|
tests = {
|
|
|
|
inherit nix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-23 10:22:30 +00:00
|
|
|
description = "Create books from MarkDown";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "mdbook";
|
2021-08-08 07:03:03 +00:00
|
|
|
homepage = "https://github.com/rust-lang/mdBook";
|
2022-12-15 17:29:45 +00:00
|
|
|
changelog = "https://github.com/rust-lang/mdBook/blob/v${version}/CHANGELOG.md";
|
2019-08-04 20:55:28 +00:00
|
|
|
license = [ licenses.mpl20 ];
|
2023-08-11 22:41:21 +00:00
|
|
|
maintainers = with maintainers; [ havvy Frostman matthiasbeyer ];
|
2018-02-23 10:22:30 +00:00
|
|
|
};
|
|
|
|
}
|