ocamlPackages.macaddr: 5.3.0 → 5.4.0

This commit is contained in:
Vincent Laporte 2023-03-23 06:04:25 +01:00
parent 33cffcde61
commit b174387ba9
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
6 changed files with 22 additions and 10 deletions

View file

@ -7,6 +7,8 @@ buildDunePackage rec {
inherit (ipaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ ipaddr cstruct ];
doCheck = true;

View file

@ -1,6 +1,6 @@
{ lib, buildDunePackage
, macaddr, domain-name, stdlib-shims
, ounit, ppx_sexp_conv
, ounit2, ppx_sexp_conv
}:
buildDunePackage rec {
@ -8,9 +8,12 @@ buildDunePackage rec {
inherit (macaddr) version src;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [ macaddr domain-name stdlib-shims ];
checkInputs = [ ppx_sexp_conv ounit ];
checkInputs = [ ppx_sexp_conv ounit2 ];
doCheck = true;
meta = macaddr.meta // {

View file

@ -1,5 +1,5 @@
{ lib, buildDunePackage
, ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv
, ipaddr, ipaddr-cstruct, ounit2, ppx_sexp_conv
}:
buildDunePackage rec {
@ -7,9 +7,11 @@ buildDunePackage rec {
inherit (ipaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ ipaddr ];
checkInputs = [ ipaddr-cstruct ounit ppx_sexp_conv ];
checkInputs = [ ipaddr-cstruct ounit2 ppx_sexp_conv ];
doCheck = true;
meta = ipaddr.meta // {

View file

@ -7,6 +7,8 @@ buildDunePackage {
inherit (macaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ macaddr cstruct ];
doCheck = true;

View file

@ -1,19 +1,20 @@
{ lib, fetchurl, buildDunePackage
, ppx_sexp_conv, ounit
, ppx_sexp_conv, ounit2
}:
buildDunePackage rec {
pname = "macaddr";
version = "5.3.0";
version = "5.4.0";
minimalOCamlVersion = "4.04";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/ocaml-ipaddr/releases/download/v${version}/ipaddr-${version}.tbz";
sha256 = "0mdp38mkvk2f5h2q7nb9fc70a8hyssblnl7kam0d8r5lckgrx5rn";
hash = "sha256-WmYpG/cQtF9+lVDs1WIievUZ1f7+iZ2hufsdD1HHNeo=";
};
checkInputs = [ ppx_sexp_conv ounit ];
checkInputs = [ ppx_sexp_conv ounit2 ];
doCheck = true;
meta = with lib; {

View file

@ -1,5 +1,5 @@
{ lib, buildDunePackage
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2
}:
buildDunePackage {
@ -7,9 +7,11 @@ buildDunePackage {
inherit (macaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ ppx_sexp_conv ];
checkInputs = [ macaddr-cstruct ounit ];
checkInputs = [ macaddr-cstruct ounit2 ];
doCheck = true;
meta = macaddr.meta // {