lol

Merge pull request #205113 from Frostman/mdbook-admonish-1.8.0

mdbook-admonish: 1.7.0 -> 1.8.0

authored by

figsoda and committed by
GitHub
0f487f2b 9769e902

+5 -14
+5 -14
pkgs/tools/text/mdbook-admonish/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, rustPlatform, CoreServices }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mdbook-admonish"; 5 - version = "1.7.0"; 5 + version = "1.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tommilligan"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-AGOq05NevkRU8qHsJIWd2WfZ4i7w/wexf6c0fUAaoLg="; 11 + hash = "sha256-jo5kR1fzSRQq8fvblJaK3IEHfxeN7h0ZdT6vvPBXTXM="; 12 12 }; 13 13 14 - cargoPatches = [ 15 - # https://github.com/tommilligan/mdbook-admonish/pull/33 16 - (fetchpatch { 17 - name = "update-mdbook-for-rust-1.64.patch"; 18 - url = "https://github.com/tommilligan/mdbook-admonish/commit/650123645b18a3f8ed170738c7c1813315095ed9.patch"; 19 - hash = "sha256-8LMk+Dgz9k0g9fbGGC0X2byyJtfDDgvdGxO06mD6GDI="; 20 - }) 21 - ]; 22 - 23 - cargoHash = "sha256-5PWfze00/mWmzYqP5M1pAPt+SuknpU9dc0B7RSikuTE="; 14 + cargoHash = "sha256-N0zkdaVWas9jK9IXn9T85s18mNTjoEl8OUF2HA2CuHg="; 24 15 25 16 buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 26 17 27 18 meta = with lib; { 28 19 description = "A preprocessor for mdbook to add Material Design admonishments"; 29 20 license = licenses.mit; 30 - maintainers = with maintainers; [ jmgilman ]; 21 + maintainers = with maintainers; [ jmgilman Frostman ]; 31 22 homepage = "https://github.com/tommilligan/mdbook-admonish"; 32 23 }; 33 24 }