mmdoc: 0.13.0 -> 0.14.0; fix darwin build

This commit is contained in:
Ryan Mulligan 2023-02-26 21:38:55 -08:00
parent 6d7093e9eb
commit 496cb1e30f

View file

@ -12,23 +12,20 @@
stdenv.mkDerivation rec {
pname = "mmdoc";
version = "0.13.0";
version = "0.14.0";
src = fetchFromGitHub {
owner = "ryantm";
repo = "mmdoc";
rev = version;
hash = "sha256-ZPdAMlKGwEO54hxHcQh1xgu6eUGsoX12xD/9JehzRdw=";
hash = "sha256-1e6TS4TjshicUdT7wuvLsDpotr2LUxbn15r+eNXMo2M=";
};
nativeBuildInputs = [ ninja meson pkg-config xxd ];
buildInputs = [ cmark-gfm fastJson libzip ];
doCheck = stdenv.isx86_64;
meta = with lib; {
broken = stdenv.isDarwin;
description = "Minimal Markdown Documentation";
homepage = "https://github.com/ryantm/mmdoc";
license = licenses.cc0;