ephemeral: drop due to upstream archival
This commit is contained in:
parent
aadbacdf42
commit
6fdfd22944
@ -57,6 +57,8 @@
|
|||||||
|
|
||||||
- The `electron` packages will now provide their headers (available via `electron.headers`) in extracted form instead of in a tarball.
|
- The `electron` packages will now provide their headers (available via `electron.headers`) in extracted form instead of in a tarball.
|
||||||
|
|
||||||
|
- The `ephemeral` package was removed due to upstream archival in early 2022.
|
||||||
|
|
||||||
- [testers.shellcheck](https://nixos.org/manual/nixpkgs/unstable/#tester-shellcheck) now warns when `name` is not provided.
|
- [testers.shellcheck](https://nixos.org/manual/nixpkgs/unstable/#tester-shellcheck) now warns when `name` is not provided.
|
||||||
The `name` argument will become mandatory in a future release.
|
The `name` argument will become mandatory in a future release.
|
||||||
|
|
||||||
|
|||||||
@ -1,72 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
stdenv,
|
|
||||||
fetchFromGitHub,
|
|
||||||
nix-update-script,
|
|
||||||
desktop-file-utils,
|
|
||||||
vala,
|
|
||||||
gettext,
|
|
||||||
glib,
|
|
||||||
gtk3,
|
|
||||||
libgee,
|
|
||||||
libdazzle,
|
|
||||||
meson,
|
|
||||||
ninja,
|
|
||||||
pantheon,
|
|
||||||
pkg-config,
|
|
||||||
python3,
|
|
||||||
webkitgtk_4_0,
|
|
||||||
wrapGAppsHook3,
|
|
||||||
glib-networking,
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "ephemeral";
|
|
||||||
version = "7.1.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "cassidyjames";
|
|
||||||
repo = "ephemeral";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "sha256-07HO8nC2Pwz2EAea4ZzmqyMfQdgX8FVqDepdA6j/NT8=";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
desktop-file-utils
|
|
||||||
gettext
|
|
||||||
meson
|
|
||||||
ninja
|
|
||||||
vala
|
|
||||||
pkg-config
|
|
||||||
python3
|
|
||||||
wrapGAppsHook3
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
glib
|
|
||||||
glib-networking
|
|
||||||
gtk3
|
|
||||||
libdazzle
|
|
||||||
libgee
|
|
||||||
pantheon.granite
|
|
||||||
webkitgtk_4_0
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
chmod +x meson/post_install.py
|
|
||||||
patchShebangs meson/post_install.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
updateScript = nix-update-script { };
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Always-incognito web browser";
|
|
||||||
homepage = "https://github.com/cassidyjames/ephemeral";
|
|
||||||
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
license = licenses.gpl3;
|
|
||||||
mainProgram = "com.github.cassidyjames.ephemeral";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -564,6 +564,7 @@ mapAliases {
|
|||||||
EmptyEpsilon = empty-epsilon; # Added 2024-07-14
|
EmptyEpsilon = empty-epsilon; # Added 2024-07-14
|
||||||
enyo-doom = enyo-launcher; # Added 2022-09-09
|
enyo-doom = enyo-launcher; # Added 2022-09-09
|
||||||
epdfview = throw "'epdfview' has been removed due to lack of maintenance upstream. Consider using 'qpdfview' instead"; # Added 2024-10-19
|
epdfview = throw "'epdfview' has been removed due to lack of maintenance upstream. Consider using 'qpdfview' instead"; # Added 2024-10-19
|
||||||
|
ephemeral = throw "'ephemeral' has been archived upstream since 2022-04-02"; # added 2025-04-12
|
||||||
epoxy = throw "'epoxy' has been renamed to/replaced by 'libepoxy'"; # Converted to throw 2024-10-17
|
epoxy = throw "'epoxy' has been renamed to/replaced by 'libepoxy'"; # Converted to throw 2024-10-17
|
||||||
|
|
||||||
erlang_24 = throw "erlang_24 has been removed as it is unmaintained upstream";
|
erlang_24 = throw "erlang_24 has been removed as it is unmaintained upstream";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user