depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ocamlgraph/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

39 lines
942 B
Nix

{ stdenv, fetchurl, ocaml, findlib
, gtkSupport ? true
, lablgtk
}:
stdenv.mkDerivation rec {
pname = "ocamlgraph";
version = "1.8.8";
src = fetchurl {
url = "http://ocamlgraph.lri.fr/download/ocamlgraph-${version}.tar.gz";
sha256 = "0m9g16wrrr86gw4fz2fazrh8nkqms0n863w7ndcvrmyafgxvxsnr";
};
buildInputs = [ ocaml findlib ]
++ stdenv.lib.optional gtkSupport lablgtk
;
createFindlibDestdir = true;
buildFlags = [ "all" ];
installTargets = [ "install-findlib" ];
postInstall = stdenv.lib.optionalString gtkSupport ''
mkdir -p $out/bin
cp dgraph/dgraph.opt $out/bin/graph-viewer
cp editor/editor.opt $out/bin/graph-editor
'';
meta = {
homepage = "http://ocamlgraph.lri.fr/";
description = "Graph library for Objective Caml";
license = stdenv.lib.licenses.gpl2Oss;
platforms = ocaml.meta.platforms or [];
maintainers = [
stdenv.lib.maintainers.kkallio
];
};
}