containerlab: 0.68.0 -> 0.69.1 (#427992)

authored by Weijia Wang and committed by GitHub adb9c0a5 ebebf7f9

+8 -3
+8 -3
pkgs/by-name/co/containerlab/package.nix
··· 8 8 9 9 buildGoModule (finalAttrs: { 10 10 pname = "containerlab"; 11 - version = "0.68.0"; 11 + version = "0.69.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "srl-labs"; 15 15 repo = "containerlab"; 16 16 tag = "v${finalAttrs.version}"; 17 - hash = "sha256-x6QDwduAMCD+Trj0awQXW0Tdleb2U6YBi/7mdMB6V/8="; 17 + hash = "sha256-+KZrKOxn9M+iKtugH89bPc106NGLwErMgIyiaU2kcGE="; 18 18 }; 19 19 20 - vendorHash = "sha256-XRgKfRw6VGg+lkbtPWUVNfAk5a7ZdFwVmhjtM7uSwHs="; 20 + vendorHash = "sha256-YmE2eR5UnXy2nXTQP2FdyPQLAQVYPzDTmLrWtbRknAs="; 21 21 22 22 nativeBuildInputs = [ 23 23 installShellFiles ··· 36 36 # Fix failed TestLabelsInit test 37 37 export USER="runner" 38 38 ''; 39 + 40 + # TestVerifyLinks wants to use docker.sock, which is not available in the Nix build environment. 41 + checkFlags = [ 42 + "-skip=^TestVerifyLinks$" 43 + ]; 39 44 40 45 postInstall = '' 41 46 local INSTALL="$out/bin/containerlab"