mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
101 lines
1.9 KiB
Nix
101 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
asciidoc,
|
|
pkg-config,
|
|
boost179,
|
|
cmark,
|
|
coeurl,
|
|
curl,
|
|
kdsingleapplication,
|
|
libevent,
|
|
libsecret,
|
|
lmdb,
|
|
lmdbxx,
|
|
mtxclient,
|
|
nlohmann_json,
|
|
olm,
|
|
re2,
|
|
spdlog,
|
|
gst_all_1,
|
|
libnice,
|
|
qt6Packages,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nheko";
|
|
version = "0.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nheko-Reborn";
|
|
repo = "nheko";
|
|
rev = "v${version}";
|
|
hash = "sha256-hQb+K8ogNj/s6ZO2kgS/sZZ35y4CwMeS3lVeMYNucYQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
asciidoc
|
|
cmake
|
|
lmdbxx
|
|
pkg-config
|
|
qt6Packages.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
boost179
|
|
cmark
|
|
coeurl
|
|
curl
|
|
kdsingleapplication
|
|
libevent
|
|
libsecret
|
|
lmdb
|
|
mtxclient
|
|
nlohmann_json
|
|
olm
|
|
qt6Packages.qtbase
|
|
qt6Packages.qtimageformats
|
|
qt6Packages.qtkeychain
|
|
qt6Packages.qtmultimedia
|
|
qt6Packages.qttools
|
|
qt6Packages.qtwayland
|
|
re2
|
|
spdlog
|
|
]
|
|
++ (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
(gst-plugins-good.override { qt6Support = true; })
|
|
gst-plugins-bad
|
|
libnice
|
|
]);
|
|
|
|
cmakeFlags = [
|
|
"-DCOMPILE_QML=ON" # see https://github.com/Nheko-Reborn/nheko/issues/389
|
|
];
|
|
|
|
preFixup = ''
|
|
# 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
|
|
rnhmjoj
|
|
];
|
|
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;
|
|
};
|
|
}
|