summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/linenoise/default.nix
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/linenoise/default.nix
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/ocaml-modules/linenoise/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/linenoise/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/linenoise/default.nix b/pkgs/development/ocaml-modules/linenoise/default.nix
index 53ac918c47e..e7120ad3857 100644
--- a/pkgs/development/ocaml-modules/linenoise/default.nix
+++ b/pkgs/development/ocaml-modules/linenoise/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, ocaml, jbuilder, findlib, result }:
+{ stdenv, fetchFromGitHub, ocaml, dune, findlib, result }:
 
 if !stdenv.lib.versionAtLeast ocaml.version "4.02"
 then throw "linenoise is not available for OCaml ${ocaml.version}"
@@ -14,10 +14,10 @@ stdenv.mkDerivation rec {
     sha256 = "1h6rqfgmhmd7p5z8yhk6zkbrk4yzw1v2fgwas2b7g3hqs6y0xj0q";
   };
 
-  buildInputs = [ ocaml findlib jbuilder ];
+  buildInputs = [ ocaml findlib dune ];
   propagatedBuildInputs = [ result ];
 
-  inherit (jbuilder) installPhase;
+  inherit (dune) installPhase;
 
   meta = {
     description = "OCaml bindings to linenoise";