mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
16 lines
279 B
Nix
16 lines
279 B
Nix
{ 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";
|
|
};
|
|
}
|
|
|