mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
Merge pull request #117908 from wandersoncferreira/whatsapp-for-linux
whatsapp-for-linux: init-at 1.1.5
This commit is contained in:
commit
bf2a8f6364
@ -1036,6 +1036,16 @@
|
||||
githubId = 75235;
|
||||
name = "Michael Walker";
|
||||
};
|
||||
bartuka = {
|
||||
email = "wand@hey.com";
|
||||
github = "wandersoncferreira";
|
||||
githubId = 17708295;
|
||||
name = "Wanderson Ferreira";
|
||||
keys = [{
|
||||
longkeyid = "rsa4096/0x56840A614DBE37AE";
|
||||
fingerprint = "A3E1 C409 B705 50B3 BF41 492B 5684 0A61 4DBE 37AE";
|
||||
}];
|
||||
};
|
||||
basvandijk = {
|
||||
email = "v.dijk.bas@gmail.com";
|
||||
github = "basvandijk";
|
||||
|
@ -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" ];
|
||||
};
|
||||
}
|
@ -13344,6 +13344,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 New Issue
Block a user