ocaml-top: 1.1.5 → 1.2.0-rc

This commit is contained in:
Vincent Laporte 2019-12-08 07:23:58 +00:00 committed by Vincent Laporte
parent 80475128fc
commit 788148f93c

View File

@ -1,15 +1,15 @@
{ stdenv, fetchzip, ncurses, ocamlPackages }: { lib, fetchzip, ncurses, ocamlPackages }:
with ocamlPackages; buildDunePackage rec { with ocamlPackages; buildDunePackage rec {
pname = "ocaml-top"; pname = "ocaml-top";
version = "1.1.5"; version = "1.2.0-rc";
src = fetchzip { src = fetchzip {
url = "https://github.com/OCamlPro/ocaml-top/archive/${version}.tar.gz"; 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 = '' configurePhase = ''
export TERM=xterm export TERM=xterm
@ -18,8 +18,8 @@ with ocamlPackages; buildDunePackage rec {
meta = { meta = {
homepage = https://www.typerex.org/ocaml-top.html; 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"; description = "A simple cross-platform OCaml code editor built for top-level evaluation";
maintainers = with stdenv.lib.maintainers; [ vbgl ]; maintainers = with lib.maintainers; [ vbgl ];
}; };
} }