incus: fix container tests from image rename (#360305)
[NixPkgs.git] / pkgs / tools / text / mdbook-toc / default.nix
blob2555e03c124c4cd87b66d665c94bddd0370f2cc1
1 { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mdbook-toc";
5   version = "0.14.2";
7   src = fetchFromGitHub {
8     owner = "badboy";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-OFNp+kFDafYbzqb7xfPTO885cAjgWfNeDvUPDKq5GJU=";
12   };
14   cargoHash = "sha256-95W0gERjwL9r0+DOgxQu+sjSFSThWeShLAqlDQiGxFw=";
16   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
18   meta = with lib; {
19     description = "Preprocessor for mdbook to add inline Table of Contents support";
20     mainProgram = "mdbook-toc";
21     homepage = "https://github.com/badboy/mdbook-toc";
22     license = [ licenses.mpl20 ];
23     maintainers = with maintainers; [ matthiasbeyer ];
24   };