diff --git a/pkgs/development/ocaml-modules/mirage-vnetif/default.nix b/pkgs/development/ocaml-modules/mirage-vnetif/default.nix index 876bc1a9817..22955018bde 100644 --- a/pkgs/development/ocaml-modules/mirage-vnetif/default.nix +++ b/pkgs/development/ocaml-modules/mirage-vnetif/default.nix @@ -1,28 +1,23 @@ { lib, buildDunePackage, fetchurl -, lwt, mirage-time, mirage-clock, mirage-net +, lwt, mirage-net , cstruct, ipaddr, macaddr, mirage-profile , duration, logs }: buildDunePackage rec { pname = "mirage-vnetif"; - version = "0.5.0"; + version = "0.6.0"; - minimumOCamlVersion = "4.06"; - - # due to cstruct - useDune2 = true; + minimalOCamlVersion = "4.06"; src = fetchurl { - url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; - sha256 = "0cpqwf51v2cpz41dfqxabf3bsabwyl6a0h0v2ncrn33q58i60m5q"; + url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz"; + sha256 = "sha256-fzRoNFqdnj4Ke+eNdo5crvbnKDx6/+dQyu+K3rD5dYw="; }; propagatedBuildInputs = [ lwt mirage-net - mirage-time - mirage-clock cstruct ipaddr macaddr