nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ocamlPackages.qcheck: 0.18 → 0.19.1

authored by

Vincent Laporte and committed by
Vincent Laporte
c55fac77 650cb466

+5 -7
+1 -1
pkgs/development/ocaml-modules/qcheck/alcotest.nix
··· 3 3 buildDunePackage { 4 4 pname = "qcheck-alcotest"; 5 5 6 - inherit (qcheck-core) version useDune2 src; 6 + inherit (qcheck-core) version src; 7 7 8 8 propagatedBuildInputs = [ qcheck-core alcotest ]; 9 9
+2 -4
pkgs/development/ocaml-modules/qcheck/core.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "qcheck-core"; 5 - version = "0.18"; 6 - 7 - useDune2 = true; 5 + version = "0.19.1"; 8 6 9 7 minimalOCamlVersion = "4.08"; 10 8 ··· 10 12 owner = "c-cube"; 11 13 repo = "qcheck"; 12 14 rev = "v${version}"; 13 - sha256 = "1s652hrj2sxqj30dfl300zjvvqk3r62a1bnzqw1hqyf6pi88qn8x"; 15 + sha256 = "sha256-AZ1Ww6CWt3X1bXXcofMe14rTlMTC9hmohcKdZLUKEvE="; 14 16 }; 15 17 16 18 meta = {
+1 -1
pkgs/development/ocaml-modules/qcheck/default.nix
··· 3 3 buildDunePackage { 4 4 pname = "qcheck"; 5 5 6 - inherit (qcheck-ounit) version useDune2 src; 6 + inherit (qcheck-ounit) version src; 7 7 8 8 propagatedBuildInputs = [ qcheck-ounit ]; 9 9
+1 -1
pkgs/development/ocaml-modules/qcheck/ounit.nix
··· 3 3 buildDunePackage { 4 4 pname = "qcheck-ounit"; 5 5 6 - inherit (qcheck-core) version useDune2 src; 6 + inherit (qcheck-core) version src; 7 7 8 8 propagatedBuildInputs = [ qcheck-core ounit ]; 9 9