summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/angstrom
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/angstrom
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/angstrom')
-rw-r--r--pkgs/development/ocaml-modules/angstrom/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/angstrom/default.nix b/pkgs/development/ocaml-modules/angstrom/default.nix
index 97baca62e72..0c00dc2ff24 100644
--- a/pkgs/development/ocaml-modules/angstrom/default.nix
+++ b/pkgs/development/ocaml-modules/angstrom/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, alcotest, result
+{ stdenv, fetchFromGitHub, ocaml, findlib, dune, alcotest, result
 , bigstringaf
 }:
 
@@ -17,15 +17,15 @@ stdenv.mkDerivation rec {
     sha256 = "0lh6024yf9ds0nh9i93r9m6p5psi8nvrqxl5x7jwl13zb0r9xfpw";
   };
 
-  buildInputs = [ ocaml findlib jbuilder alcotest ];
+  buildInputs = [ ocaml findlib dune alcotest ];
   propagatedBuildInputs = [ bigstringaf result ];
 
-  buildPhase = "jbuilder build -p angstrom";
+  buildPhase = "dune build -p angstrom";
 
   doCheck = true;
-  checkPhase = "jbuilder runtest -p angstrom";
+  checkPhase = "dune runtest -p angstrom";
 
-  inherit (jbuilder) installPhase;
+  inherit (dune) installPhase;
 
   meta = {
     homepage = https://github.com/inhabitedtype/angstrom;