summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-migrate-parsetree
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/ocaml-migrate-parsetree
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/ocaml-migrate-parsetree')
-rw-r--r--pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix b/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
index 9a2af140e312..131f478d32ed 100644
--- a/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, jbuilder, result }:
+{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, dune, result }:
 
 if !stdenv.lib.versionAtLeast ocaml.version "4.02"
 then throw "ocaml-migrate-parsetree is not available for OCaml ${ocaml.version}"
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
      sha256 = "05kbgs9n1x64fk6g3wbjnwjd17w10k3k8dzglnc45xg4hr7z651n";
    };
 
-   buildInputs = [ ocaml findlib ocamlbuild jbuilder ];
+   buildInputs = [ ocaml findlib ocamlbuild dune ];
    propagatedBuildInputs = [ result ];
 
-   inherit (jbuilder) installPhase;
+   inherit (dune) installPhase;
 
    meta = {
      description = "Convert OCaml parsetrees between different major versions";