mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 15:13:46 +00:00
13 lines
235 B
Nix
13 lines
235 B
Nix
{ buildDunePackage, lablgtk, ocamlgraph, stdlib-shims, ... }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlgraph_gtk";
|
|
inherit (ocamlgraph) version src meta;
|
|
|
|
propagatedBuildInputs = [
|
|
lablgtk
|
|
ocamlgraph
|
|
stdlib-shims
|
|
];
|
|
}
|