mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
e4feefd796
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
29 lines
846 B
Nix
29 lines
846 B
Nix
{ lib, fetchFromGitHub, stdenv, rustPlatform, darwin, pkg-config, openssl
|
|
, libiconv, CoreServices }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "mdbook-plantuml";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sytsereitsma";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1m53sp3k387injn6mwk2c6rkzw16b12m4j7q0p69fdb3fiqbkign";
|
|
};
|
|
|
|
cargoSha256 = "0xi14k86ym3rfz6901lmj444y814m7vp90bwsyjmcph3hdv6mjp0";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ CoreServices ];
|
|
|
|
meta = with lib; {
|
|
description = "mdBook preprocessor to render PlantUML diagrams to png images in the book output directory";
|
|
homepage = "https://github.com/sytsereitsma/mdbook-plantuml";
|
|
license = [ licenses.mit ];
|
|
maintainers = with maintainers; [ jcouyang ];
|
|
};
|
|
}
|