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