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

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.qcheck: 0.24 → 0.25

ocamlPackages.ppx_deriving_qcheck: keep at 0.6

authored by

Vincent Laporte and committed by
Vincent Laporte
064ca475 ed79c059

+14 -16
-2
pkgs/development/ocaml-modules/qcheck/alcotest.nix
··· 9 9 10 10 inherit (qcheck-core) version src patches; 11 11 12 - duneVersion = "3"; 13 - 14 12 propagatedBuildInputs = [ 15 13 qcheck-core 16 14 alcotest
+3 -3
pkgs/development/ocaml-modules/qcheck/core.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "qcheck-core"; 9 - version = "0.24"; 9 + version = "0.25"; 10 10 11 11 minimalOCamlVersion = "4.08"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "c-cube"; 15 15 repo = "qcheck"; 16 - rev = "v${version}"; 17 - hash = "sha256-iuFlmSeUhumeWhqHlaNqDjReRf8c4e76hhT27DK3+/g="; 16 + tag = "v${version}"; 17 + hash = "sha256-Z89jJ21zm89wb9m5HthnbHdnE9iXLyaH9k8S+FAWkKQ="; 18 18 }; 19 19 20 20 meta = {
-2
pkgs/development/ocaml-modules/qcheck/default.nix
··· 5 5 6 6 inherit (qcheck-ounit) version src patches; 7 7 8 - duneVersion = "3"; 9 - 10 8 propagatedBuildInputs = [ qcheck-ounit ]; 11 9 12 10 meta = qcheck-ounit.meta // {
+2 -4
pkgs/development/ocaml-modules/qcheck/ounit.nix
··· 1 1 { 2 2 buildDunePackage, 3 3 qcheck-core, 4 - ounit, 4 + ounit2, 5 5 }: 6 6 7 7 buildDunePackage { ··· 9 9 10 10 inherit (qcheck-core) version src patches; 11 11 12 - duneVersion = "3"; 13 - 14 12 propagatedBuildInputs = [ 15 13 qcheck-core 16 - ounit 14 + ounit2 17 15 ]; 18 16 19 17 meta = qcheck-core.meta // {
+9 -5
pkgs/development/ocaml-modules/qcheck/ppx_deriving_qcheck.nix
··· 1 1 { 2 2 buildDunePackage, 3 - qcheck-core, 3 + fetchFromGitHub, 4 4 qcheck, 5 5 ppxlib, 6 6 ppx_deriving, ··· 8 8 9 9 buildDunePackage { 10 10 pname = "ppx_deriving_qcheck"; 11 + version = "0.6"; 11 12 12 - inherit (qcheck-core) version src patches; 13 - 14 - duneVersion = "3"; 13 + src = fetchFromGitHub { 14 + owner = "c-cube"; 15 + repo = "qcheck"; 16 + tag = "v0.24"; 17 + hash = "sha256-iuFlmSeUhumeWhqHlaNqDjReRf8c4e76hhT27DK3+/g="; 18 + }; 15 19 16 20 propagatedBuildInputs = [ 17 21 qcheck ··· 23 19 ppx_deriving 24 20 ]; 25 21 26 - meta = qcheck-core.meta // { 22 + meta = qcheck.meta // { 27 23 description = "PPX Deriver for QCheck"; 28 24 }; 29 25 }