nixpkgs/pkgs/tools/text/mmdoc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
672 B
Nix
Raw Normal View History

2021-01-26 15:22:00 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmark-gfm
, xxd
, fastJson
, libzip
, ninja
, meson
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "mmdoc";
2023-08-26 15:44:13 +00:00
version = "0.19.0";
2021-01-26 15:22:00 +00:00
src = fetchFromGitHub {
owner = "ryantm";
repo = "mmdoc";
rev = version;
2023-08-26 15:44:13 +00:00
hash = "sha256-W48ndjWrdJphvGDDUtcLZLBzsTfeLCi3k6UrHVroBcA=";
2021-01-26 15:22:00 +00:00
};
nativeBuildInputs = [ ninja meson pkg-config xxd ];
buildInputs = [ cmark-gfm fastJson libzip ];
meta = with lib; {
description = "Minimal Markdown Documentation";
homepage = "https://github.com/ryantm/mmdoc";
license = licenses.cc0;
maintainers = with maintainers; [ ryantm ];
platforms = platforms.unix;
};
}