ephemeral: init at 5.1.0

This commit is contained in:
kjuvi 2019-05-18 11:18:24 +02:00 committed by worldofpeace
parent cb3c214602
commit 9bb25d5c76
2 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,62 @@
{ stdenv
, fetchFromGitHub
, desktop-file-utils
, gettext
, glib
, gtk3
, hicolor-icon-theme
, libgee
, libdazzle
, meson
, ninja
, pantheon
, pkgconfig
, python3
, webkitgtk
, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "ephemeral";
version = "5.1.0";
src = fetchFromGitHub {
owner = "cassidyjames";
repo = "ephemeral";
rev = version;
sha256 = "1wfrbbdw429q2mkycn87fhci0jidcsflk5f2lbzfzccbcs8msffz";
};
nativeBuildInputs = [
desktop-file-utils
gettext
meson
ninja
pantheon.vala
pkgconfig
python3
wrapGAppsHook
];
buildInputs = [
glib
gtk3
hicolor-icon-theme
libdazzle
libgee
pantheon.granite
webkitgtk
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
meta = with stdenv.lib; {
description = "The always-incognito web browser";
homepage = https://github.com/cassidyjames/ephemeral;
maintainers = with maintainers; [ kjuvi ] ++ pantheon.maintainers;
platforms = platforms.linux;
license = licenses.gpl3;
};
}

View File

@ -17546,6 +17546,8 @@ in
inherit (gnome3) epiphany;
ephemeral = callPackage ../applications/networking/browsers/ephemeral { };
epic5 = callPackage ../applications/networking/irc/epic5 { };
eq10q = callPackage ../applications/audio/eq10q { };