3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/mdbook-mermaid/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
694 B
Nix
Raw Normal View History

2021-04-14 03:52:08 +01:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }:
rustPlatform.buildRustPackage rec {
pname = "mdbook-mermaid";
2022-02-12 15:14:52 +00:00
version = "0.10.0";
2021-04-14 03:52:08 +01:00
src = fetchFromGitHub {
owner = "badboy";
repo = pname;
rev = "v${version}";
2022-02-12 15:14:52 +00:00
sha256 = "sha256-dXeu/e92lafurA/bqKoszIjK/3qw/ZvVKnDxYALRpTk=";
2021-04-14 03:52:08 +01:00
};
2022-02-12 15:14:52 +00:00
cargoSha256 = "sha256-LVfeQPRpwv1l3Brm8HJYoYvv26fJhsfR4I9Ds4NuWQM=";
2021-04-14 03:52:08 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
meta = with lib; {
description = "A preprocessor for mdbook to add mermaid.js support";
homepage = "https://github.com/badboy/mdbook-mermaid";
license = [ licenses.mpl20 ];
maintainers = with maintainers; [ xrelkd ];
};
}