Merge pull request #215824 from vbgl/ocaml-cfstream-1.3.2

ocamlPackages.cfstream: 1.3.1 → 1.3.2

authored by

Nick Cao and committed by
GitHub
c0715b93 c7ef732e

+8 -6
+1
pkgs/development/ocaml-modules/biocaml/default.nix
··· 8 8 version = "0.11.2"; 9 9 10 10 minimalOCamlVersion = "4.11"; 11 + duneVersion = "3"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "biocaml";
+6 -6
pkgs/development/ocaml-modules/cfstream/default.nix
··· 1 - { lib, buildDunePackage, fetchFromGitHub, m4, core_kernel, ounit }: 1 + { lib, buildDunePackage, fetchFromGitHub, m4, camlp-streams, core_kernel, ounit }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "cfstream"; 5 - version = "1.3.1"; 5 + version = "1.3.2"; 6 6 7 - useDune2 = true; 7 + duneVersion = "3"; 8 8 9 - minimumOCamlVersion = "4.04.1"; 9 + minimalOCamlVersion = "4.04.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "biocaml"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "0qnxfp6y294gjsccx7ksvwn9x5q20hi8sg24rjypzsdkmlphgdnd"; 15 + hash = "sha256-iSg0QsTcU0MT/Cletl+hW6bKyH0jkp7Jixqu8H59UmQ="; 16 16 }; 17 17 18 18 patches = [ ./git_commit.patch ]; ··· 21 21 22 22 nativeBuildInputs = [ m4 ]; 23 23 checkInputs = [ ounit ]; 24 - propagatedBuildInputs = [ core_kernel ]; 24 + propagatedBuildInputs = [ camlp-streams core_kernel ]; 25 25 26 26 doCheck = true; 27 27
+1
pkgs/development/ocaml-modules/phylogenetics/default.nix
··· 26 26 }; 27 27 28 28 minimalOCamlVersion = "4.08"; 29 + duneVersion = "3"; 29 30 30 31 nativeCheckInputs = [ bppsuite ]; 31 32 checkInputs = [ alcotest ];