lol
0
fork

Configure Feed

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

ocamlPackages.mirage-vnetif: 0.5.0 → 0.6.0

authored by

Vincent Laporte and committed by
Vincent Laporte
6724234f a8c2879f

+5 -10
+5 -10
pkgs/development/ocaml-modules/mirage-vnetif/default.nix
··· 1 1 { lib, buildDunePackage, fetchurl 2 - , lwt, mirage-time, mirage-clock, mirage-net 2 + , lwt, mirage-net 3 3 , cstruct, ipaddr, macaddr, mirage-profile 4 4 , duration, logs 5 5 }: 6 6 7 7 buildDunePackage rec { 8 8 pname = "mirage-vnetif"; 9 - version = "0.5.0"; 9 + version = "0.6.0"; 10 10 11 - minimumOCamlVersion = "4.06"; 12 - 13 - # due to cstruct 14 - useDune2 = true; 11 + minimalOCamlVersion = "4.06"; 15 12 16 13 src = fetchurl { 17 - url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 18 - sha256 = "0cpqwf51v2cpz41dfqxabf3bsabwyl6a0h0v2ncrn33q58i60m5q"; 14 + url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz"; 15 + sha256 = "sha256-fzRoNFqdnj4Ke+eNdo5crvbnKDx6/+dQyu+K3rD5dYw="; 19 16 }; 20 17 21 18 propagatedBuildInputs = [ 22 19 lwt 23 20 mirage-net 24 - mirage-time 25 - mirage-clock 26 21 cstruct 27 22 ipaddr 28 23 macaddr