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