about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2019-12-08 07:23:58 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2019-12-15 08:11:56 +0100
commit788148f93c4cdb407575ce0902a6040f1b0819cd (patch)
tree8be239b0dc76ca89056e17a7b21add263792ec5f /pkgs/development/tools/ocaml
parent80475128fc913f75c9dbe6819eaefcc33a552d49 (diff)
downloadnixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.tar
nixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.tar.gz
nixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.tar.bz2
nixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.tar.lz
nixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.tar.xz
nixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.tar.zst
nixlib-788148f93c4cdb407575ce0902a6040f1b0819cd.zip
ocaml-top: 1.1.5 → 1.2.0-rc
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/ocaml-top/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/ocaml/ocaml-top/default.nix b/pkgs/development/tools/ocaml/ocaml-top/default.nix
index 7336439240d5..3ceb9b1622c1 100644
--- a/pkgs/development/tools/ocaml/ocaml-top/default.nix
+++ b/pkgs/development/tools/ocaml/ocaml-top/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchzip, ncurses, ocamlPackages }:
+{ lib, fetchzip, ncurses, ocamlPackages }:
 
 with ocamlPackages; buildDunePackage rec {
   pname = "ocaml-top";
-  version = "1.1.5";
+  version = "1.2.0-rc";
 
   src = fetchzip {
     url = "https://github.com/OCamlPro/ocaml-top/archive/${version}.tar.gz";
-    sha256 = "1d4i6aanrafgrgk4mh154k6lkwk0b6mh66rykz33awlf5pfqd8yv";
+    sha256 = "1r290m9vvr25lgaanivz05h0kf4fd3h5j61wj4hpp669zffcyyb5";
   };
 
-  buildInputs = [ ncurses ocp-build lablgtk ocp-index ];
+  buildInputs = [ ncurses ocp-build lablgtk3-sourceview3 ocp-index ];
 
   configurePhase = ''
     export TERM=xterm
@@ -18,8 +18,8 @@ with ocamlPackages; buildDunePackage rec {
 
   meta = {
     homepage = https://www.typerex.org/ocaml-top.html;
-    license = stdenv.lib.licenses.gpl3;
+    license = lib.licenses.gpl3;
     description = "A simple cross-platform OCaml code editor built for top-level evaluation";
-    maintainers = with stdenv.lib.maintainers; [ vbgl ];
+    maintainers = with lib.maintainers; [ vbgl ];
   };
 }