ephemeral: drop due to upstream archival (#398111)

authored by scrumplex.net and committed by GitHub 2631b0b7 17467e94

+3 -72
+2
doc/release-notes/rl-2505.section.md
··· 57 57 58 58 - The `electron` packages will now provide their headers (available via `electron.headers`) in extracted form instead of in a tarball. 59 59 60 + - The `ephemeral` package was removed due to upstream archival in early 2022. 61 + 60 62 - [testers.shellcheck](https://nixos.org/manual/nixpkgs/unstable/#tester-shellcheck) now warns when `name` is not provided. 61 63 The `name` argument will become mandatory in a future release. 62 64
-72
pkgs/by-name/ep/ephemeral/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - nix-update-script, 6 - desktop-file-utils, 7 - vala, 8 - gettext, 9 - glib, 10 - gtk3, 11 - libgee, 12 - libdazzle, 13 - meson, 14 - ninja, 15 - pantheon, 16 - pkg-config, 17 - python3, 18 - webkitgtk_4_0, 19 - wrapGAppsHook3, 20 - glib-networking, 21 - }: 22 - 23 - stdenv.mkDerivation rec { 24 - pname = "ephemeral"; 25 - version = "7.1.0"; 26 - 27 - src = fetchFromGitHub { 28 - owner = "cassidyjames"; 29 - repo = "ephemeral"; 30 - rev = version; 31 - sha256 = "sha256-07HO8nC2Pwz2EAea4ZzmqyMfQdgX8FVqDepdA6j/NT8="; 32 - }; 33 - 34 - nativeBuildInputs = [ 35 - desktop-file-utils 36 - gettext 37 - meson 38 - ninja 39 - vala 40 - pkg-config 41 - python3 42 - wrapGAppsHook3 43 - ]; 44 - 45 - buildInputs = [ 46 - glib 47 - glib-networking 48 - gtk3 49 - libdazzle 50 - libgee 51 - pantheon.granite 52 - webkitgtk_4_0 53 - ]; 54 - 55 - postPatch = '' 56 - chmod +x meson/post_install.py 57 - patchShebangs meson/post_install.py 58 - ''; 59 - 60 - passthru = { 61 - updateScript = nix-update-script { }; 62 - }; 63 - 64 - meta = with lib; { 65 - description = "Always-incognito web browser"; 66 - homepage = "https://github.com/cassidyjames/ephemeral"; 67 - maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members; 68 - platforms = platforms.linux; 69 - license = licenses.gpl3; 70 - mainProgram = "com.github.cassidyjames.ephemeral"; 71 - }; 72 - }
+1
pkgs/top-level/aliases.nix
··· 564 564 EmptyEpsilon = empty-epsilon; # Added 2024-07-14 565 565 enyo-doom = enyo-launcher; # Added 2022-09-09 566 566 epdfview = throw "'epdfview' has been removed due to lack of maintenance upstream. Consider using 'qpdfview' instead"; # Added 2024-10-19 567 + ephemeral = throw "'ephemeral' has been archived upstream since 2022-04-02"; # added 2025-04-12 567 568 epoxy = throw "'epoxy' has been renamed to/replaced by 'libepoxy'"; # Converted to throw 2024-10-17 568 569 569 570 erlang_24 = throw "erlang_24 has been removed as it is unmaintained upstream";