lol

Merge pull request #221971 from vbgl/ocaml-containers-3.11

ocamlPackages.containers: 3.10 → 3.11

authored by

Ulrik Strid and committed by
GitHub
8501a164 e915f74e

+10 -5
+2
pkgs/development/ocaml-modules/containers/data.nix
··· 8 8 9 9 inherit (containers) src version doCheck; 10 10 11 + duneVersion = "3"; 12 + 11 13 buildInputs = [ dune-configurator ]; 12 14 checkInputs = [ gen iter qcheck-core ]; 13 15
+4 -2
pkgs/development/ocaml-modules/containers/default.nix
··· 5 5 }: 6 6 7 7 buildDunePackage rec { 8 - version = "3.10"; 8 + version = "3.11"; 9 9 pname = "containers"; 10 + 11 + duneVersion = "3"; 10 12 11 13 src = fetchFromGitHub { 12 14 owner = "c-cube"; 13 15 repo = "ocaml-containers"; 14 16 rev = "v${version}"; 15 - hash = "sha256-eWmju4CD30+wX3sKI8rOUEbqbQygdOtc0U4sb9vYuNA="; 17 + hash = "sha256-tGAsg98/T6VKvG95I4qioabWM3TEKrDKlsrfUJqxCyM="; 16 18 }; 17 19 18 20 buildInputs = [ dune-configurator ];
+4 -3
pkgs/development/ocaml-modules/ppx_cstubs/default.nix
··· 18 18 19 19 minimalOCamlVersion = "4.08"; 20 20 21 - useDune2 = true; 21 + duneVersion = "3"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "fdopen"; 25 25 repo = "ppx_cstubs"; 26 26 rev = version; 27 - sha256 = "sha256-qMmwRWCIfNyhCQYPKLiufnb57sTR3P+WInOqtPDywFs="; 27 + hash = "sha256-qMmwRWCIfNyhCQYPKLiufnb57sTR3P+WInOqtPDywFs="; 28 28 }; 29 29 30 - nativeBuildInputs = [ cppo findlib ]; 30 + nativeBuildInputs = [ cppo ]; 31 31 32 32 buildInputs = [ 33 33 bigarray-compat 34 34 containers 35 + findlib 35 36 integers 36 37 num 37 38 ppxlib