summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocaml-top
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-09-05 16:11:47 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-09-15 19:32:32 +0000
commitfc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4 (patch)
tree752fb6ac7c0edf9a82887fa6943dc47db2ecdaf1 /pkgs/development/tools/ocaml/ocaml-top
parenteb429c7c545e4759b170402796a8a4e7d22a0dda (diff)
downloadnixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar
nixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.gz
nixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.bz2
nixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.lz
nixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.xz
nixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.zst
nixpkgs-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.zip
jbuilder: 1.0.1 -> dune: 1.1.1
Diffstat (limited to 'pkgs/development/tools/ocaml/ocaml-top')
-rw-r--r--pkgs/development/tools/ocaml/ocaml-top/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/ocaml-top/default.nix b/pkgs/development/tools/ocaml/ocaml-top/default.nix
index 744a136c9ef..ddea2aa9784 100644
--- a/pkgs/development/tools/ocaml/ocaml-top/default.nix
+++ b/pkgs/development/tools/ocaml/ocaml-top/default.nix
@@ -1,6 +1,7 @@
 { stdenv, fetchzip, ncurses
 , ocamlPackages
-, jbuilder }:
+, dune
+}:
 
 stdenv.mkDerivation rec {
   version = "1.1.5";
@@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "1d4i6aanrafgrgk4mh154k6lkwk0b6mh66rykz33awlf5pfqd8yv";
   };
 
-  buildInputs = [ ncurses jbuilder ]
+  buildInputs = [ ncurses dune ]
   ++ (with ocamlPackages; [ ocaml ocp-build findlib lablgtk ocp-index ]);
 
   configurePhase = ''
@@ -20,7 +21,7 @@ stdenv.mkDerivation rec {
 
   buildPhase = "jbuilder build";
 
-  inherit (jbuilder) installPhase;
+  inherit (dune) installPhase;
 
   meta = {
     homepage = https://www.typerex.org/ocaml-top.html;