mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
23 lines
643 B
Nix
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 ];
|
|
};
|
|
}
|