summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorkjuvi <quentin.vaucher@protonmail.com>2019-05-18 11:18:24 +0200
committerworldofpeace <worldofpeace@protonmail.ch>2019-05-18 19:20:21 -0400
commit9bb25d5c766098cd96da374384046dd05e04e2a5 (patch)
tree3cb2b12a8216ae566ed5e5851ae2a404b8bef717 /pkgs/applications
parentcb3c214602e25826ed53edb1bc00876903a483fd (diff)
downloadnixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.tar
nixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.tar.gz
nixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.tar.bz2
nixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.tar.lz
nixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.tar.xz
nixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.tar.zst
nixpkgs-9bb25d5c766098cd96da374384046dd05e04e2a5.zip
ephemeral: init at 5.1.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/ephemeral/default.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/ephemeral/default.nix b/pkgs/applications/networking/browsers/ephemeral/default.nix
new file mode 100644
index 00000000000..05bfab883fe
--- /dev/null
+++ b/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;
+  };
+}