Merge pull request #260826 from vbgl/ocaml-repr-0.7.0

ocamlPackages.repr: 0.6.0 → 0.7.0
This commit is contained in:
Jörg Thalheim 2023-10-13 10:44:35 +02:00 committed by GitHub
commit 4b8b0d45a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 7 deletions

View file

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

View file

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