jbuilder: 1.0.1 -> dune: 1.1.1

This commit is contained in:
Vincent Laporte
2018-09-05 16:11:47 +00:00
committed by Vincent Laporte
parent eb429c7c54
commit fc19401d67
69 changed files with 228 additions and 230 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, jbuilder }:
{ stdenv, fetchurl, ocaml, findlib, dune }:
stdenv.mkDerivation rec {
version = "2.1";
@@ -10,11 +10,11 @@ stdenv.mkDerivation rec {
unpackCmd = "tar -xjf $src";
buildInputs = [ ocaml findlib jbuilder ];
buildInputs = [ ocaml findlib dune ];
buildPhase = "jbuilder build -p csv";
buildPhase = "dune build -p csv";
inherit (jbuilder) installPhase;
inherit (dune) installPhase;
meta = {
description = "A pure OCaml library to read and write CSV files";