ocamlPackages.ethernet: 3.0.0 → 3.2.0

This commit is contained in:
Vincent Laporte 2023-08-23 21:05:36 +02:00
parent 73a060e7ca
commit 839e22ee64
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -6,32 +6,23 @@
, lwt , lwt
, macaddr , macaddr
, mirage-net , mirage-net
, mirage-profile
, ppx_cstruct
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "ethernet"; pname = "ethernet";
version = "3.0.0"; version = "3.2.0";
minimalOCamlVersion = "4.08"; minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl { src = fetchurl {
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz";
hash = "sha256:0a898vp9dw42majsvzzvs8pc6x4ns01wlwhwbacixliv6vv78ng9"; hash = "sha256-TB2nAhQiHZ1Dk6n/3i49s9HKNH92yNUl3xl94hByrAk=";
}; };
buildInputs = [
ppx_cstruct
];
propagatedBuildInputs = [ propagatedBuildInputs = [
cstruct cstruct
mirage-net mirage-net
macaddr macaddr
mirage-profile
lwt lwt
logs logs
]; ];