ocamlPackages.crunch: use Dune 2

This commit is contained in:
Vincent Laporte 2021-02-01 11:05:30 +01:00
parent ae4b158b6d
commit 0f24f12bb4
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,10 +1,12 @@
{ lib, buildDunePackage, fetchurl, ocaml, cmdliner, opaline, ptime }: { lib, buildDunePackage, fetchurl, ocaml, cmdliner, ptime }:
buildDunePackage rec { buildDunePackage rec {
pname = "crunch"; pname = "crunch";
version = "3.1.0"; version = "3.1.0";
useDune2 = true;
src = fetchurl { src = fetchurl {
url = "https://github.com/mirage/ocaml-crunch/releases/download/v${version}/crunch-v${version}.tbz"; url = "https://github.com/mirage/ocaml-crunch/releases/download/v${version}/crunch-v${version}.tbz";
sha256 = "0d26715a4h9r1wibnc12xy690m1kan7hrcgbb5qk8x78zsr67lnf"; sha256 = "0d26715a4h9r1wibnc12xy690m1kan7hrcgbb5qk8x78zsr67lnf";
@ -15,7 +17,7 @@ buildDunePackage rec {
outputs = [ "lib" "bin" "out" ]; outputs = [ "lib" "bin" "out" ];
installPhase = '' installPhase = ''
${opaline}/bin/opaline -prefix $bin -libdir $lib/lib/ocaml/${ocaml.version}/site-lib/ dune install --prefix=$bin --libdir=$lib/lib/ocaml/${ocaml.version}/site-lib/
''; '';
meta = { meta = {