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

Configure Feed

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

ocamlPackages.macaddr: 5.3.0 → 5.4.0

+22 -10
+2
pkgs/development/ocaml-modules/ipaddr/cstruct.nix
··· 7 7 8 8 inherit (ipaddr) version src; 9 9 10 + duneVersion = "3"; 11 + 10 12 propagatedBuildInputs = [ ipaddr cstruct ]; 11 13 12 14 doCheck = true;
+5 -2
pkgs/development/ocaml-modules/ipaddr/default.nix
··· 1 1 { lib, buildDunePackage 2 2 , macaddr, domain-name, stdlib-shims 3 - , ounit, ppx_sexp_conv 3 + , ounit2, ppx_sexp_conv 4 4 }: 5 5 6 6 buildDunePackage rec { ··· 8 8 9 9 inherit (macaddr) version src; 10 10 11 + minimalOCamlVersion = "4.08"; 12 + duneVersion = "3"; 13 + 11 14 propagatedBuildInputs = [ macaddr domain-name stdlib-shims ]; 12 15 13 - checkInputs = [ ppx_sexp_conv ounit ]; 16 + checkInputs = [ ppx_sexp_conv ounit2 ]; 14 17 doCheck = true; 15 18 16 19 meta = macaddr.meta // {
+4 -2
pkgs/development/ocaml-modules/ipaddr/sexp.nix
··· 1 1 { lib, buildDunePackage 2 - , ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv 2 + , ipaddr, ipaddr-cstruct, ounit2, ppx_sexp_conv 3 3 }: 4 4 5 5 buildDunePackage rec { ··· 7 7 8 8 inherit (ipaddr) version src; 9 9 10 + duneVersion = "3"; 11 + 10 12 propagatedBuildInputs = [ ipaddr ]; 11 13 12 - checkInputs = [ ipaddr-cstruct ounit ppx_sexp_conv ]; 14 + checkInputs = [ ipaddr-cstruct ounit2 ppx_sexp_conv ]; 13 15 doCheck = true; 14 16 15 17 meta = ipaddr.meta // {
+2
pkgs/development/ocaml-modules/macaddr/cstruct.nix
··· 7 7 8 8 inherit (macaddr) version src; 9 9 10 + duneVersion = "3"; 11 + 10 12 propagatedBuildInputs = [ macaddr cstruct ]; 11 13 12 14 doCheck = true;
+5 -4
pkgs/development/ocaml-modules/macaddr/default.nix
··· 1 1 { lib, fetchurl, buildDunePackage 2 - , ppx_sexp_conv, ounit 2 + , ppx_sexp_conv, ounit2 3 3 }: 4 4 5 5 buildDunePackage rec { 6 6 pname = "macaddr"; 7 - version = "5.3.0"; 7 + version = "5.4.0"; 8 8 9 9 minimalOCamlVersion = "4.04"; 10 + duneVersion = "3"; 10 11 11 12 src = fetchurl { 12 13 url = "https://github.com/mirage/ocaml-ipaddr/releases/download/v${version}/ipaddr-${version}.tbz"; 13 - sha256 = "0mdp38mkvk2f5h2q7nb9fc70a8hyssblnl7kam0d8r5lckgrx5rn"; 14 + hash = "sha256-WmYpG/cQtF9+lVDs1WIievUZ1f7+iZ2hufsdD1HHNeo="; 14 15 }; 15 16 16 - checkInputs = [ ppx_sexp_conv ounit ]; 17 + checkInputs = [ ppx_sexp_conv ounit2 ]; 17 18 doCheck = true; 18 19 19 20 meta = with lib; {
+4 -2
pkgs/development/ocaml-modules/macaddr/sexp.nix
··· 1 1 { lib, buildDunePackage 2 - , macaddr, ppx_sexp_conv, macaddr-cstruct, ounit 2 + , macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2 3 3 }: 4 4 5 5 buildDunePackage { ··· 7 7 8 8 inherit (macaddr) version src; 9 9 10 + duneVersion = "3"; 11 + 10 12 propagatedBuildInputs = [ ppx_sexp_conv ]; 11 13 12 - checkInputs = [ macaddr-cstruct ounit ]; 14 + checkInputs = [ macaddr-cstruct ounit2 ]; 13 15 doCheck = true; 14 16 15 17 meta = macaddr.meta // {