summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/zed
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/ocaml-modules/zed
parenteb429c7c545e4759b170402796a8a4e7d22a0dda (diff)
downloadnixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar
nixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.gz
nixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.bz2
nixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.lz
nixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.xz
nixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.tar.zst
nixlib-fc19401d67b9ffb1cb6a8cc870c5e1d800dc73e4.zip
jbuilder: 1.0.1 -> dune: 1.1.1
Diffstat (limited to 'pkgs/development/ocaml-modules/zed')
-rw-r--r--pkgs/development/ocaml-modules/zed/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/zed/default.nix b/pkgs/development/ocaml-modules/zed/default.nix
index 1ddb6d180405..d9dcf1a53851 100644
--- a/pkgs/development/ocaml-modules/zed/default.nix
+++ b/pkgs/development/ocaml-modules/zed/default.nix
@@ -1,14 +1,14 @@
-{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, camomile, react, jbuilder }:
+{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, camomile, react, dune }:
 
 let param =
   if stdenv.lib.versionAtLeast ocaml.version "4.02" then
   {
     version = "1.6";
     sha256 = "00hhxcjf3bj3w2qm8nzs9x6vrqkadf4i0277s5whzy2rmiknj63v";
-    buildInputs = [ jbuilder ];
+    buildInputs = [ dune ];
     extra = {
-     buildPhase = "jbuilder build -p zed";
-     inherit (jbuilder) installPhase; };
+     buildPhase = "dune build -p zed";
+     inherit (dune) installPhase; };
   } else {
     version = "1.4";
     sha256 = "0d8qfy0qiydrrqi8qc9rcwgjigql6vx9gl4zp62jfz1lmjgb2a3w";