about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/stog/markdown.nix
blob: 48fd4a0b00967399e2825260ea529997653381f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, stog, ocf_ppx, omd }:

buildDunePackage {
  pname = "stog_markdown";

  inherit (stog) version src;

  buildInputs = [ ocf_ppx ];
  propagatedBuildInputs = [ omd stog ];

  meta = stog.meta // {
    description = "Stog plugin to use markdown syntax";
  };
}