luci-go: drop (#437435)

authored by Fernando Rodrigues and committed by GitHub 10bee29e 8669c583

+1 -50
-50
pkgs/by-name/lu/luci-go/package.nix
··· 1 - { 2 - buildGoModule, 3 - fetchFromGitiles, 4 - lib, 5 - }: 6 - let 7 - commit = "500493c154652d6986a34b341e98df244ae1ad0d"; 8 - git-repo = "https://chromium.googlesource.com/infra/luci/luci-go"; 9 - in 10 - buildGoModule { 11 - pname = "luci-go"; 12 - version = "0-unstable-2024-10-31"; 13 - 14 - src = fetchFromGitiles { 15 - url = git-repo; 16 - rev = commit; 17 - hash = "sha256-HP4Aizt5FJA3IAlqs7gylw8/xUbBwsmReGaR8jIkmrk="; 18 - }; 19 - 20 - vendorHash = "sha256-FMqbEls6MivPeReZTADrfcAvxo8o0Gy7bq9xG6WN38k="; 21 - 22 - checkFlags = 23 - let 24 - skippedTests = [ 25 - # require network access 26 - "TestDownloadInputs" 27 - "TestInstallCipd" 28 - "TestIsLocalAddr" 29 - "TestGenerateSignedURL" 30 - 31 - # require filesystem access 32 - "TestPythonBasic" 33 - "TestPythonFromPath" 34 - ]; 35 - in 36 - [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; 37 - 38 - meta = { 39 - description = "LUCI services and tools in Go"; 40 - longDescription = '' 41 - LUCI services and tools in Go. This is part of Chromium infra and 42 - provides facilities useful for packaging software from the Chromium 43 - ecosystem. 44 - ''; 45 - homepage = "${git-repo}/"; 46 - changelog = "${git-repo}/+log?s=${commit}"; 47 - license = lib.licenses.asl20; 48 - maintainers = with lib.maintainers; [ gm6k ]; 49 - }; 50 - }
+1
pkgs/top-level/aliases.nix
··· 1469 1469 ltwheelconf = throw "'ltwheelconf' has been removed because it is obsolete"; # Added 2025-05-07 1470 1470 luna-icons = throw "luna-icons has been removed as it was removed upstream"; # Added 2024-10-29 1471 1471 lucene = throw "lucene has been removed since it was both wildly out of date and was not even built properly for 4 years"; # Added 2025-04-10 1472 + luci-go = throw "luci-go has been removed since it was unused and failing to build for 5 months"; # Added 2025-08-27 1472 1473 lumail = throw "'lumail' has been removed since its upstream is unavailable"; # Added 2025-05-07 1473 1474 lv_img_conv = throw "'lv_img_conv' has been removed from nixpkgs as it is broken"; # Added 2024-06-18 1474 1475 lxd = lib.warnOnInstantiate "lxd has been renamed to lxd-lts" lxd-lts; # Added 2024-04-01