biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / mdbook-admonish / default.nix
blobda29d25dcb332aaa7349ee9c23d70f8d4b2e53d8
1 { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mdbook-admonish";
5   version = "1.18.0";
7   src = fetchFromGitHub {
8     owner = "tommilligan";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-GNQIOjgHCt3XPCzF0RjV9YStI8psLdHhTPuTkdgx8vA=";
12   };
14   cargoHash = "sha256-CG4WvAFDqtRUjF4kJ29363F6jWRChIXgT5i6ozwV4pw=";
16   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
18   meta = with lib; {
19     description = "Preprocessor for mdbook to add Material Design admonishments";
20     mainProgram = "mdbook-admonish";
21     license = licenses.mit;
22     maintainers = with maintainers; [ jmgilman Frostman matthiasbeyer ];
23     homepage = "https://github.com/tommilligan/mdbook-admonish";
24   };