16 lines
202 B
Nix
16 lines
202 B
Nix
{
|
|
buildDunePackage,
|
|
lablgtk,
|
|
ocamlgraph,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "ocamlgraph_gtk";
|
|
inherit (ocamlgraph) version src meta;
|
|
|
|
propagatedBuildInputs = [
|
|
lablgtk
|
|
ocamlgraph
|
|
];
|
|
}
|