slackdump: 2.6.1 -> 3.0.0 (#370596)

authored by Gaétan Lepage and committed by GitHub 3bb0efd4 20b1ca70

+9 -3
+9 -3
pkgs/by-name/sl/slackdump/package.nix
··· 3 3 lib, 4 4 fetchFromGitHub, 5 5 stdenv, 6 + nix-update-script, 6 7 darwin, 7 8 }: 8 9 9 10 buildGoModule rec { 10 11 pname = "slackdump"; 11 - version = "2.6.1"; 12 + version = "3.0.0"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "rusq"; 15 16 repo = "slackdump"; 16 17 tag = "v${version}"; 17 - hash = "sha256-szo5n1sVv9PZUW77k/1qLuU0URl0FNB4cO5vqokoZ2c="; 18 + hash = "sha256-gnZbBY1XMYSGgsVG5MqR2y3o574hOwapcLZf5F21AJg="; 18 19 }; 19 20 20 21 nativeCheckInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.IOKitTools; ··· 24 25 skippedTests = [ 25 26 "TestSession_saveUserCache" 26 27 "TestSession_GetUsers" 28 + "Test_exportV3" # This was skipped on upstream's CI. It is seemed that some file are missed 27 29 ]; 28 30 in 29 31 [ 30 32 "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" 31 33 ]; 32 34 33 - vendorHash = "sha256-aDLeYi4nsMKxtE59au6I3mSEY0/6Vo0ujWFbLca+0wQ="; 35 + vendorHash = "sha256-GUPBrSgwxVXA3vEVbY36IZQfd2jEhvgk0OlFdP/2DU0="; 36 + 37 + __darwinAllowLocalNetworking = true; 38 + 39 + passthru.updateScript = nix-update-script { }; 34 40 35 41 meta = { 36 42 homepage = "https://github.com/rusq/slackdump";