repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
nixos/tests/userborn: fix setting hostPlatform (#378940)
[NixPkgs.git]
/
pkgs
/
applications
/
misc
/
stog
/
asy.nix
blob
f39ece3ec9f8a55efa90434f55c0961762b2310f
1
{
2
buildDunePackage,
3
stog,
4
ocf_ppx,
5
}:
6
7
buildDunePackage {
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
}