5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
12 lines
235 B
Nix
12 lines
235 B
Nix
{ buildDunePackage, lablgtk, ocamlgraph, stdlib-shims, ... }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlgraph_gtk";
|
|
inherit (ocamlgraph) version src meta;
|
|
|
|
propagatedBuildInputs = [
|
|
lablgtk
|
|
ocamlgraph
|
|
stdlib-shims
|
|
];
|
|
}
|