3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/browsers/ephemeral/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-05-18 10:18:24 +01:00
, fetchFromGitHub
, nix-update-script
2019-05-18 10:18:24 +01:00
, desktop-file-utils
, vala
2019-05-18 10:18:24 +01:00
, gettext
, glib
, gtk3
, libgee
, libdazzle
, meson
, ninja
, pantheon
, pkg-config
2019-05-18 10:18:24 +01:00
, python3
, webkitgtk
, 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
vala
pkg-config
2019-05-18 10:18:24 +01:00
python3
wrapGAppsHook
];
buildInputs = [
glib
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 = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
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";
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
2019-05-18 10:18:24 +01:00
platforms = platforms.linux;
license = licenses.gpl3;
mainProgram = "com.github.cassidyjames.ephemeral";
2019-05-18 10:18:24 +01:00
};
}