lol

elm-github-install: drop

+1 -33
-30
pkgs/tools/package-management/elm-github-install/default.nix
··· 1 - { 2 - lib, 3 - bundlerEnv, 4 - ruby, 5 - bundlerUpdateScript, 6 - }: 7 - 8 - bundlerEnv rec { 9 - pname = "elm_install"; 10 - name = "elm-github-install-${version}"; 11 - 12 - version = (import ./gemset.nix).elm_install.version; 13 - 14 - inherit ruby; 15 - gemdir = ./.; 16 - 17 - passthru.updateScript = bundlerUpdateScript "elm-github-install"; 18 - 19 - meta = with lib; { 20 - description = "Install Elm packages from git repositories"; 21 - homepage = "https://github.com/gdotdesign/elm-github-install"; 22 - license = licenses.unfree; 23 - maintainers = with maintainers; [ 24 - roberth 25 - nicknovitski 26 - ]; 27 - platforms = platforms.all; 28 - mainProgram = "elm-install"; 29 - }; 30 - }
+1 -1
pkgs/top-level/aliases.nix
··· 799 799 eintopf = lauti; # Project was renamed, added 2025-05-01 800 800 elasticsearch7Plugins = elasticsearchPlugins; 801 801 electronplayer = throw "'electronplayer' has been removed as it had been discontinued upstream since October 2024"; # Added 2024-12-17 802 - 802 + elm-github-install = throw "'elm-github-install' has been removed as it is abandoned upstream and only supports Elm 0.18.0"; # Added 2025-08-25 803 803 element-desktop-wayland = throw "element-desktop-wayland has been removed. Consider setting NIXOS_OZONE_WL=1 via 'environment.sessionVariables' instead"; # Added 2024-12-17 804 804 elementsd-simplicity = throw "'elementsd-simplicity' has been removed due to lack of maintenance, consider using 'elementsd' instead"; # Added 2025-06-04 805 805
-2
pkgs/top-level/all-packages.nix
··· 2045 2045 conf = config.element-web.conf or { }; 2046 2046 }; 2047 2047 2048 - elm-github-install = callPackage ../tools/package-management/elm-github-install { }; 2049 - 2050 2048 espanso-wayland = espanso.override { 2051 2049 x11Support = false; 2052 2050 waylandSupport = !stdenv.hostPlatform.isDarwin;