571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
80 lines
1.4 KiB
Nix
80 lines
1.4 KiB
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, stdenv
|
|
, cmake
|
|
, glib-networking
|
|
, gst_all_1
|
|
, gtkmm3
|
|
, libayatana-appindicator
|
|
, libcanberra
|
|
, libepoxy
|
|
, libpsl
|
|
, libdatrie
|
|
, libdeflate
|
|
, libselinux
|
|
, libsepol
|
|
, libsysprof-capture
|
|
, libthai
|
|
, libxkbcommon
|
|
, sqlite
|
|
, pcre
|
|
, pcre2
|
|
, pkg-config
|
|
, webkitgtk_4_0
|
|
, wrapGAppsHook3
|
|
, xorg
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "whatsapp-for-linux";
|
|
version = "1.6.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eneshecan";
|
|
repo = "whatsapp-for-linux";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-hUIyn6BhAPoszBTHKa4qSj6IRa+8cUS0Gis/qjDDnyk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
glib-networking
|
|
gst_all_1.gst-libav
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gtkmm3
|
|
libayatana-appindicator
|
|
libcanberra
|
|
libdatrie
|
|
libdeflate
|
|
libepoxy
|
|
libpsl
|
|
libselinux
|
|
libsepol
|
|
libsysprof-capture
|
|
libthai
|
|
libxkbcommon
|
|
pcre
|
|
pcre2
|
|
sqlite
|
|
webkitgtk_4_0
|
|
xorg.libXdmcp
|
|
xorg.libXtst
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/eneshecan/whatsapp-for-linux";
|
|
description = "Whatsapp desktop messaging app";
|
|
mainProgram = "whatsapp-for-linux";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ bartuka ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
|
};
|
|
})
|