Merge staging-next into staging
This commit is contained in:
@@ -4,6 +4,8 @@ buildDunePackage rec {
|
||||
pname = "csv";
|
||||
version = "2.4";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Chris00/ocaml-${pname}/releases/download/${version}/csv-${version}.tbz";
|
||||
sha256 = "13m9n8mdss6jfbiw7d5bybxn4n85vmg4zw7dc968qrgjfy0w9zhk";
|
||||
|
||||
@@ -6,7 +6,7 @@ else
|
||||
|
||||
buildDunePackage {
|
||||
pname = "csv-lwt";
|
||||
inherit (csv) src version meta;
|
||||
inherit (csv) src version useDune2 meta;
|
||||
|
||||
propagatedBuildInputs = [ csv ocaml_lwt ];
|
||||
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
{ lib, fetchurl, buildDunePackage, ocaml, alcotest, ocaml-migrate-parsetree }:
|
||||
{ lib, fetchurl, buildDunePackage, ocaml, alcotest, ppxlib }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "ppx_blob";
|
||||
version = "0.7.1";
|
||||
version = "0.7.2";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/johnwhitington/${pname}/releases/download/${version}/ppx_blob-${version}.tbz";
|
||||
sha256 = "0m616ri6kmawflphiwm6j4djds27v0fjvi8xjz1fq5ydc1sq8d0l";
|
||||
sha256 = "00haz1cmplk3j9ysh6j656zrldy60585fmlndmfhpd5332mxrfdw";
|
||||
};
|
||||
|
||||
checkInputs = [ alcotest ];
|
||||
buildInputs = [ ocaml-migrate-parsetree ];
|
||||
propagatedBuildInputs = [ ppxlib ];
|
||||
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
||||
|
||||
meta = with lib; {
|
||||
|
||||
Reference in New Issue
Block a user