summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-11-14 09:42:16 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-11-18 08:25:15 +0100
commit47b02b30e32a5f8f47ed4cf370a0ddf3b9aa9ba8 (patch)
tree6a93e5e38cc934606d5f7a613eeb91dd354a0482 /pkgs/development/ocaml-modules
parent597e7748d1fa603062a66cb74ff8d5f5eaf2f481 (diff)
ocamlPackages.ppx_blob: 0.4.0 → 0.7.1
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/ppx_blob/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/ppx_blob/default.nix b/pkgs/development/ocaml-modules/ppx_blob/default.nix
index d7d662e74a5e..a64ff9cbef2d 100644
--- a/pkgs/development/ocaml-modules/ppx_blob/default.nix
+++ b/pkgs/development/ocaml-modules/ppx_blob/default.nix
@@ -2,16 +2,18 @@
buildDunePackage rec {
pname = "ppx_blob";
- version = "0.4.0";
+ version = "0.7.1";
+
+ useDune2 = true;
src = fetchurl {
url = "https://github.com/johnwhitington/${pname}/releases/download/${version}/ppx_blob-${version}.tbz";
- sha256 = "1xmslk1mwdzhy1bydgsjlcb7h544c39hvxa8lywp8w72gaggjl16";
+ sha256 = "0m616ri6kmawflphiwm6j4djds27v0fjvi8xjz1fq5ydc1sq8d0l";
};
- checkInputs = lib.optional doCheck alcotest;
+ checkInputs = [ alcotest ];
buildInputs = [ ocaml-migrate-parsetree ];
- doCheck = lib.versionAtLeast ocaml.version "4.03";
+ doCheck = lib.versionAtLeast ocaml.version "4.05";
meta = with lib; {
homepage = "https://github.com/johnwhitington/ppx_blob";