ocaml-top: 1.1.2 -> 1.1.3
This commit is contained in:
parent
1d5878166e
commit
8498f979a1
@ -1,15 +1,16 @@
|
|||||||
{ stdenv, fetchzip, ncurses
|
{ stdenv, fetchzip, ncurses
|
||||||
, ocaml, ocpBuild, findlib, lablgtk, ocp-index
|
, ocamlPackages
|
||||||
, opam }:
|
, opam }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ocaml-top-1.1.2";
|
name = "ocaml-top-1.1.3";
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = https://github.com/OCamlPro/ocaml-top/archive/1.1.2.tar.gz;
|
url = https://github.com/OCamlPro/ocaml-top/archive/1.1.3.tar.gz;
|
||||||
sha256 = "10wfz8d6c1lbh31kayvlb5fj7qmgh5c6xhs3q595dnf9skrf091j";
|
sha256 = "0islyinv7lwhg8hkg4xn30wwz1nv50rj0wpsis8jpimw6jdsnax3";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses opam ocaml ocpBuild findlib lablgtk ocp-index ];
|
buildInputs = [ ncurses opam ]
|
||||||
|
++ (with ocamlPackages; [ ocaml ocpBuild findlib lablgtk ocp-index ]);
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
export TERM=xterm
|
export TERM=xterm
|
||||||
@ -18,15 +19,13 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildPhase = "ocp-build ocaml-top";
|
buildPhase = "ocp-build ocaml-top";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = "opam-installer --prefix=$out";
|
||||||
opam-installer --script --prefix=$out ocaml-top.install | sh
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.typerex.org/ocaml-top.html;
|
homepage = http://www.typerex.org/ocaml-top.html;
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = stdenv.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";
|
||||||
platforms = ocaml.meta.platforms or [];
|
platforms = ocamlPackages.ocaml.meta.platforms or [];
|
||||||
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -5452,7 +5452,7 @@ with pkgs;
|
|||||||
|
|
||||||
ocaml_make = callPackage ../development/ocaml-modules/ocamlmake { };
|
ocaml_make = callPackage ../development/ocaml-modules/ocamlmake { };
|
||||||
|
|
||||||
inherit (ocamlPackages) ocaml-top;
|
ocaml-top = callPackage ../development/tools/ocaml/ocaml-top { };
|
||||||
|
|
||||||
opa = callPackage ../development/compilers/opa {
|
opa = callPackage ../development/compilers/opa {
|
||||||
nodejs = nodejs-4_x;
|
nodejs = nodejs-4_x;
|
||||||
|
@ -752,8 +752,6 @@ let
|
|||||||
|
|
||||||
haxe = callPackage ../development/compilers/haxe { };
|
haxe = callPackage ../development/compilers/haxe { };
|
||||||
|
|
||||||
ocaml-top = callPackage ../development/tools/ocaml/ocaml-top { };
|
|
||||||
|
|
||||||
ocamlnat = callPackage ../development/ocaml-modules/ocamlnat { };
|
ocamlnat = callPackage ../development/ocaml-modules/ocamlnat { };
|
||||||
|
|
||||||
trv = callPackage ../development/tools/misc/trv { };
|
trv = callPackage ../development/tools/misc/trv { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user