forked from mirrors/nixpkgs
whatsapp-for-linux: init-at 1.1.5
Whataspp is widely used in several contries as default messaging system. We can rely on browser-based solution but an app is preferred method for several users.
This commit is contained in:
parent
2f9d5ad739
commit
084c3e7844
|
@ -0,0 +1,38 @@
|
|||
{ fetchFromGitHub, lib, stdenv, gnome3, cmake, pkg-config,
|
||||
libappindicator-gtk3, gst_all_1, pcre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "whatsapp-for-linux";
|
||||
version = "1.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eneshecan";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1gzahls4givd2kbjdwx6yb3jv7a3r1krw40qihiz7hkamkrpaiaz";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gnome3.gtkmm
|
||||
gnome3.webkitgtk
|
||||
libappindicator-gtk3
|
||||
gst_all_1.gst-plugins-base
|
||||
gst_all_1.gst-plugins-good
|
||||
gst_all_1.gst-plugins-bad
|
||||
gst_all_1.gst-libav
|
||||
pcre
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/eneshecan/whatsapp-for-linux";
|
||||
description = "Whatsapp desktop messaging app";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ bartuka ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -13340,6 +13340,8 @@ in
|
|||
|
||||
vtable-dumper = callPackage ../development/tools/misc/vtable-dumper { };
|
||||
|
||||
whatsapp-for-linux = callPackage ../applications/networking/instant-messengers/whatsapp-for-linux { };
|
||||
|
||||
whatstyle = callPackage ../development/tools/misc/whatstyle {
|
||||
inherit (llvmPackages) clang-unwrapped;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue