about summary refs log tree commit diff
path: root/pkgs/applications/misc/stog/asy.nix
blob: 58f1cf35f4d47409690eacac5036b994c7103d58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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";
  };
}