kraft: 0.6.4 -> 0.6.6

Diff: https://github.com/unikraft/kraftkit/compare/v0.6.4...0.6.6

authored by

Jörg Thalheim and committed by
Jörg Thalheim
238a2f85 8c603d5a

+10 -3
+10 -3
pkgs/applications/virtualization/kraft/default.nix
··· 2 2 , buildGoModule 3 3 , fetchFromGitHub 4 4 , stdenv 5 + , nix-update-script 5 6 }: 6 7 7 8 buildGoModule rec { 8 9 pname = "kraftkit"; 9 - version = "0.6.4"; 10 + version = "0.6.6"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "unikraft"; 13 14 repo = "kraftkit"; 14 15 rev = "v${version}"; 15 - hash = "sha256-+aZrJqxgPGIoWEW4PZj6Nib7Z49HitxqMbeoyIe14iM="; 16 + hash = "sha256-3dI3F1cCeLEOd+zusWUDZWLrVaaKHXzwOL/mF/yPZC8="; 16 17 }; 17 18 18 - vendorHash = "sha256-4V7GTqCDSHybuwIrnmO1MJ+DwMpkKOdA7UC72YJqStM="; 19 + vendorHash = "sha256-4zciooCUNVLTQ/0tctqV3hExR5vRY5VumHzGtL8xdws="; 19 20 20 21 ldflags = [ 21 22 "-s" ··· 24 25 ]; 25 26 26 27 subPackages = [ "cmd/kraft" ]; 28 + 29 + passthru = { 30 + updateScript = nix-update-script { 31 + extraArgs = [ "--version-regex" "^v([0-9.]+)" ]; 32 + }; 33 + }; 27 34 28 35 meta = { 29 36 description = "Build and use highly customized and ultra-lightweight unikernel VMs";