summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/stog/asy.nix
blob: f39ece3ec9f8a55efa90434f55c0961762b2310f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  buildDunePackage,
  stog,
  ocf_ppx,
}:

buildDunePackage {
  pname = "stog_asy";

  inherit (stog) version src;

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

  meta = stog.meta // {
    description = "Stog plugin to include Asymptote results in documents";
  };
}