mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
7c7ba68773
Signed-off-by: Cynthia Fox <cyntheticfox@gh0st.sh>
120 lines
2.7 KiB
Nix
120 lines
2.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, asciidoc
|
|
, pkg-config
|
|
, boost179
|
|
, cmark
|
|
, coeurl
|
|
, curl
|
|
, libevent
|
|
, libsecret
|
|
, lmdb
|
|
, lmdbxx
|
|
, mtxclient
|
|
, nlohmann_json
|
|
, olm
|
|
, qtbase
|
|
, qtgraphicaleffects
|
|
, qtimageformats
|
|
, qtkeychain
|
|
, qtmacextras
|
|
, qtmultimedia
|
|
, qtquickcontrols2
|
|
, qttools
|
|
, re2
|
|
, spdlog
|
|
, wrapQtAppsHook
|
|
, voipSupport ? true
|
|
, gst_all_1
|
|
, libnice
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nheko";
|
|
version = "0.11.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nheko-Reborn";
|
|
repo = "nheko";
|
|
rev = "v${version}";
|
|
hash = "sha256-2daXxTbpSUlig47y901JOkWRxbZGH4qrvNMepJbvS3o=";
|
|
};
|
|
|
|
patches = [
|
|
# The 2 following patches can be removed with the next version bump.
|
|
# Backport of https://github.com/Nheko-Reborn/nheko/commit/e89e65dc17020772eb057414b4f0c5d6f4ad98d0.
|
|
(fetchpatch {
|
|
name = "nheko-fmt10.patch";
|
|
url = "https://gitlab.archlinux.org/archlinux/packaging/packages/nheko/-/raw/1b0d5c9eff6409dfd82953f346546d36c288a4a9/nheko-0.11.3-fix-for-fmt-10.patch";
|
|
hash = "sha256-UYqAu2iXT3Bn/MxCtybiJrJLfVMOOVRchWqrGuPfapI=";
|
|
})
|
|
# https://github.com/Nheko-Reborn/nheko/pull/1552
|
|
(fetchpatch {
|
|
name = "nheko-fmt10.1.patch";
|
|
url = "https://github.com/Nheko-Reborn/nheko/commit/614facf93c2b5d6118beb822cc542ac53a883c37.patch";
|
|
hash = "sha256-rjsQNDfj3Lzbv8ow3qiNozGXQFrtYLhArS6a9JCdgBQ=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
cmake
|
|
lmdbxx
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
boost179
|
|
cmark
|
|
coeurl
|
|
curl
|
|
libevent
|
|
libsecret
|
|
lmdb
|
|
mtxclient
|
|
nlohmann_json
|
|
olm
|
|
qtbase
|
|
qtgraphicaleffects
|
|
qtimageformats
|
|
qtkeychain
|
|
qtmultimedia
|
|
qtquickcontrols2
|
|
qttools
|
|
re2
|
|
spdlog
|
|
] ++ lib.optional stdenv.isDarwin qtmacextras
|
|
++ lib.optionals voipSupport (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
(gst-plugins-good.override { qt5Support = true; })
|
|
gst-plugins-bad
|
|
libnice
|
|
]);
|
|
|
|
cmakeFlags = [
|
|
"-DCOMPILE_QML=ON" # see https://github.com/Nheko-Reborn/nheko/issues/389
|
|
];
|
|
|
|
preFixup = lib.optionalString voipSupport ''
|
|
# add gstreamer plugins path to the wrapper
|
|
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Desktop client for the Matrix protocol";
|
|
homepage = "https://github.com/Nheko-Reborn/nheko";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "nheko";
|
|
maintainers = with maintainers; [ ekleog fpletz ];
|
|
platforms = platforms.all;
|
|
# Should be fixable if a higher clang version is used, see:
|
|
# https://github.com/NixOS/nixpkgs/pull/85922#issuecomment-619287177
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|