2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-05-18 09:18:24 +00:00
|
|
|
, fetchFromGitHub
|
2020-07-29 16:33:39 +00:00
|
|
|
, nix-update-script
|
2019-05-18 09:18:24 +00:00
|
|
|
, desktop-file-utils
|
2019-10-10 02:47:37 +00:00
|
|
|
, vala
|
2019-05-18 09:18:24 +00:00
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, gtk3
|
|
|
|
, libgee
|
|
|
|
, libdazzle
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pantheon
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-05-18 09:18:24 +00:00
|
|
|
, python3
|
|
|
|
, webkitgtk
|
2019-05-18 23:36:53 +00:00
|
|
|
, wrapGAppsHook
|
|
|
|
, glib-networking
|
|
|
|
}:
|
2019-05-18 09:18:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ephemeral";
|
2021-03-27 09:06:04 +00:00
|
|
|
version = "7.1.0";
|
2019-05-18 09:18:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cassidyjames";
|
|
|
|
repo = "ephemeral";
|
|
|
|
rev = version;
|
2021-03-27 09:06:04 +00:00
|
|
|
sha256 = "sha256-07HO8nC2Pwz2EAea4ZzmqyMfQdgX8FVqDepdA6j/NT8=";
|
2019-05-18 09:18:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
desktop-file-utils
|
|
|
|
gettext
|
|
|
|
meson
|
|
|
|
ninja
|
2019-10-10 02:47:37 +00:00
|
|
|
vala
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-05-18 09:18:24 +00:00
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
glib
|
2019-05-18 23:36:53 +00:00
|
|
|
glib-networking
|
2019-05-18 09:18:24 +00:00
|
|
|
gtk3
|
|
|
|
libdazzle
|
|
|
|
libgee
|
|
|
|
pantheon.granite
|
|
|
|
webkitgtk
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
'';
|
|
|
|
|
2019-12-22 23:19:30 +00:00
|
|
|
passthru = {
|
2022-12-25 22:11:14 +00:00
|
|
|
updateScript = nix-update-script { };
|
2019-12-22 23:19:30 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-05-18 09:18:24 +00:00
|
|
|
description = "The always-incognito web browser";
|
2020-03-29 18:08:11 +00:00
|
|
|
homepage = "https://github.com/cassidyjames/ephemeral";
|
2021-09-18 15:00:51 +00:00
|
|
|
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
|
2019-05-18 09:18:24 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2021-11-03 10:27:38 +00:00
|
|
|
mainProgram = "com.github.cassidyjames.ephemeral";
|
2019-05-18 09:18:24 +00:00
|
|
|
};
|
|
|
|
}
|