nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 stog,
4 ocf_ppx,
5}:
6
7buildDunePackage {
8 pname = "stog_asy";
9
10 inherit (stog) version src;
11
12 buildInputs = [ ocf_ppx ];
13 propagatedBuildInputs = [ stog ];
14
15 meta = stog.meta // {
16 description = "Stog plugin to include Asymptote results in documents";
17 };
18}