nixpkgs/pkgs/applications/networking/browsers/ephemeral/default.nix

71 lines
1.2 KiB
Nix
Raw Normal View History

2019-05-18 09:18:24 +00:00
{ stdenv
, fetchFromGitHub
, desktop-file-utils
, vala
2019-05-18 09:18:24 +00:00
, gettext
, glib
, gtk3
, libgee
, libdazzle
, meson
, ninja
, pantheon
, pkgconfig
, python3
, webkitgtk
, wrapGAppsHook
, glib-networking
}:
2019-05-18 09:18:24 +00:00
stdenv.mkDerivation rec {
pname = "ephemeral";
2020-05-02 08:10:39 +00:00
version = "6.4.1";
2019-05-18 09:18:24 +00:00
src = fetchFromGitHub {
owner = "cassidyjames";
repo = "ephemeral";
rev = version;
2020-05-02 08:10:39 +00:00
sha256 = "1lzcwaczh601kwbx7fzg32nrzlg67asby7p86qy10qz86xf4g608";
2019-05-18 09:18:24 +00:00
};
nativeBuildInputs = [
desktop-file-utils
gettext
meson
ninja
vala
2019-05-18 09:18:24 +00:00
pkgconfig
python3
wrapGAppsHook
];
buildInputs = [
glib
glib-networking
2019-05-18 09:18:24 +00: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 = pantheon.updateScript {
attrPath = pname;
};
};
2019-05-18 09:18:24 +00:00
meta = with stdenv.lib; {
description = "The always-incognito web browser";
2020-03-29 18:08:11 +00:00
homepage = "https://github.com/cassidyjames/ephemeral";
2019-05-18 09:18:24 +00:00
maintainers = with maintainers; [ kjuvi ] ++ pantheon.maintainers;
platforms = platforms.linux;
license = licenses.gpl3;
};
}