lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

mdbook-mermaid: 0.12.1 -> 0.12.6

authored by

R. RyanTM and committed by
GitHub
5c0d5541 4b9dbcd0

+15 -7
+15 -7
pkgs/tools/text/mdbook-mermaid/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , CoreServices 6 + }: 2 7 3 8 rustPlatform.buildRustPackage rec { 4 9 pname = "mdbook-mermaid"; 5 - version = "0.12.1"; 10 + version = "0.12.6"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "badboy"; 9 14 repo = pname; 10 - rev = "v${version}"; 11 - hash = "sha256-22JmV4cFfUTwiweQP0Em2VbqmTUui2yWnbhKagprQ4Q="; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-1mSSnAfsg9AEnDAgINrSLIeu9O2vLqchZPSH12cjATk="; 12 17 }; 13 18 14 - cargoHash = "sha256-tztzmfWOtqFGWERMWgBSAqvT+hKfhBWL9KW4awixXk0="; 19 + cargoHash = "sha256-9PMBHVpf8bDuSIYKrIFZjmBE2icejPTML+hhZ4DLq/Y="; 15 20 16 - buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + CoreServices 23 + ]; 17 24 18 25 meta = with lib; { 19 26 description = "A preprocessor for mdbook to add mermaid.js support"; 20 27 homepage = "https://github.com/badboy/mdbook-mermaid"; 21 - license = [ licenses.mpl20 ]; 28 + changelog = "https://github.com/badboy/mdbook-mermaid/blob/v${version}/CHANGELOG.md"; 29 + license = licenses.mpl20; 22 30 maintainers = with maintainers; [ xrelkd ]; 23 31 }; 24 32 }