nixpkgs/pkgs/tools/text/mdbook-pagetoc/default.nix
2024-05-01 02:10:46 +00:00

23 lines
643 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "mdbook-pagetoc";
version = "0.2.0";
src = fetchFromGitHub {
owner = "slowsage";
repo = pname;
rev = "v${version}";
hash = "sha256-A8J3cKSA//NGIVK3uE43YH3ph9DHGFlg7uOo10j2Kh8=";
};
cargoHash = "sha256-FvDvPXA4/dxVOIt1LwesBrWEsjdYcrhHescQVAiggBA=";
meta = with lib; {
description = "Table of contents for mdbook (in sidebar)";
mainProgram = "mdbook-pagetoc";
homepage = "https://github.com/slowsage/mdbook-pagetoc";
license = licenses.mit;
maintainers = with maintainers; [ blaggacao matthiasbeyer ];
};
}