aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/faraday
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/faraday
parenteb429c7c545e4759b170402796a8a4e7d22a0dda (diff)
jbuilder: 1.0.1 -> dune: 1.1.1
Diffstat (limited to 'pkgs/development/ocaml-modules/faraday')
-rw-r--r--pkgs/development/ocaml-modules/faraday/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/faraday/default.nix b/pkgs/development/ocaml-modules/faraday/default.nix
index 8f30ec519777..6af808654f53 100644
--- a/pkgs/development/ocaml-modules/faraday/default.nix
+++ b/pkgs/development/ocaml-modules/faraday/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest }:
+{ stdenv, fetchFromGitHub, ocaml, findlib, dune, alcotest }:
if !stdenv.lib.versionAtLeast ocaml.version "4.02"
then throw "faraday is not available for OCaml ${ocaml.version}"
@@ -15,14 +15,14 @@ stdenv.mkDerivation rec {
sha256 = "1kql0il1frsbx6rvwqd7ahi4m14ik6la5an6c2w4x7k00ndm4d7n";
};
- buildInputs = [ ocaml findlib jbuilder alcotest ];
+ buildInputs = [ ocaml findlib dune alcotest ];
- buildPhase = "jbuilder build -p faraday";
+ buildPhase = "dune build -p faraday";
doCheck = true;
checkPhase = "jbuilder runtest";
- inherit (jbuilder) installPhase;
+ inherit (dune) installPhase;
meta = {
description = "Serialization library built for speed and memory efficiency";