kazv: init at 0.5.0 (#334844)

This commit is contained in:
Aleksana 2024-09-06 16:05:45 +08:00 committed by GitHub
commit 1f70e0f549
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 135 additions and 0 deletions

View File

@ -0,0 +1,70 @@
{
lib,
stdenv,
fetchFromGitLab,
boost,
cmake,
cmark,
cryptopp,
extra-cmake-modules,
immer,
kdePackages,
lager,
libkazv,
nlohmann_json,
olm,
pkg-config,
qt6,
zug,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "kazv";
version = "0.5.0";
src = fetchFromGitLab {
domain = "lily-is.land";
owner = "kazv";
repo = "kazv";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-WBS7TJJw0t57V4+NxsG8V8q4UKQXB8kRpWocvNy1Eto=";
};
nativeBuildInputs = [
cmake
kdePackages.extra-cmake-modules
pkg-config
qt6.wrapQtAppsHook
];
buildInputs = [
boost
cmark
cryptopp
immer
kdePackages.kio
kdePackages.kirigami
kdePackages.kirigami-addons
kdePackages.knotifications
lager
libkazv
nlohmann_json
olm
qt6.qtbase
qt6.qtimageformats
qt6.qtmultimedia
qt6.qtwayland
zug
];
strictDeps = true;
meta = {
description = "Convergent matrix client and instant messaging app";
homepage = "https://kazv.chat/";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ fgaz ];
mainProgram = "kazv";
platforms = lib.platforms.all;
};
})

View File

@ -0,0 +1,65 @@
{
lib,
stdenv,
fetchFromGitLab,
boost,
catch2_3,
cmake,
cryptopp,
immer,
lager,
libcpr,
libhttpserver,
libmicrohttpd,
nlohmann_json,
olm,
pkg-config,
zug,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libkazv";
version = "0.7.0";
src = fetchFromGitLab {
domain = "lily-is.land";
owner = "kazv";
repo = "libkazv";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-bKujiuAR5otF7nc/BdVWVaEW9fSxdh2bcAgsQ5UO1Aw=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
boost
cryptopp
immer
lager
libcpr
libhttpserver
libmicrohttpd
olm
nlohmann_json
zug
];
strictDeps = true;
cmakeFlags = [ (lib.cmakeBool "libkazv_BUILD_TESTS" finalAttrs.doCheck) ];
doCheck = true;
checkInputs = [ catch2_3 ];
meta = {
description = "Matrix client sdk built upon lager and the value-oriented design it enables";
homepage = "https://lily-is.land/kazv/libkazv";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ fgaz ];
platforms = lib.platforms.all;
};
})