ocamlPackages.repr: 0.6.0 → 0.7.0

This commit is contained in:
Vincent Laporte 2023-10-13 08:07:48 +02:00
parent 1d6eb597f3
commit 9176d22aae
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 4 additions and 7 deletions

View File

@ -2,18 +2,16 @@
buildDunePackage rec {
pname = "repr";
version = "0.6.0";
version = "0.7.0";
src = fetchFromGitHub {
owner = "mirage";
repo = "repr";
rev = version;
hash = "sha256-jF8KmaG07CT26O/1ANc6s1yHFJqhXDtd0jgTA04tIgw=";
hash = "sha256-SM55m5NIaQ2UKAtznNFSt3LN4QA7As0DyTxVeQjOTjI=";
};
minimalOCamlVersion = "4.08";
duneVersion = "3";
strictDeps = true;
propagatedBuildInputs = [
base64

View File

@ -3,8 +3,7 @@
buildDunePackage {
pname = "ppx_repr";
inherit (repr) src version strictDeps;
duneVersion = "3";
inherit (repr) src version;
propagatedBuildInputs = [
ppx_deriving
@ -12,7 +11,7 @@ buildDunePackage {
repr
];
doCheck = false; # tests fail with ppxlib >= 0.23.0
doCheck = true;
checkInputs = [
alcotest
hex