mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
libkazv: init at 0.7.0
This commit is contained in:
parent
c46d43c625
commit
3362afaee0
65
pkgs/by-name/li/libkazv/package.nix
Normal file
65
pkgs/by-name/li/libkazv/package.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user