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