biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ocaml / ocaml-top / default.nix
blobf96ad2248ee21bad512cc3a993b9feb2caa13546
1 { lib, fetchFromGitHub, ocamlPackages }:
3 let
4   inherit (ocamlPackages) buildDunePackage lablgtk3-sourceview3 ocp-index;
5 in
7 buildDunePackage rec {
8   pname = "ocaml-top";
9   version = "1.2.0";
11   src = fetchFromGitHub {
12     owner = "OCamlPro";
13     repo = "ocaml-top";
14     rev = version;
15     hash = "sha256-xmPGGB/zUpfeAxUIhR1PhfoESAJq7sTpqHuf++EH3Lw=";
16   };
18   buildInputs = [ lablgtk3-sourceview3 ocp-index ];
20   meta = {
21     homepage = "https://www.typerex.org/ocaml-top.html";
22     license = lib.licenses.gpl3;
23     description = "A simple cross-platform OCaml code editor built for top-level evaluation";
24     mainProgram = "ocaml-top";
25     maintainers = with lib.maintainers; [ vbgl ];
26   };