Skip to content

Commit

Permalink
ephemeral: init at 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xiorcale authored and worldofpeace committed May 18, 2019
1 parent cb3c214 commit 9bb25d5
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
62 changes: 62 additions & 0 deletions pkgs/applications/networking/browsers/ephemeral/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 9bb25d5

Please sign in to comment.