nixpkgs/pkgs/development/libraries/libquotient/default.nix

30 lines
712 B
Nix
Raw Normal View History

2021-10-26 07:13:40 +02:00
{ mkDerivation, lib, fetchFromGitHub, cmake, qtmultimedia }:
mkDerivation rec {
pname = "libquotient";
2021-10-26 07:13:40 +02:00
version = "0.6.11";
src = fetchFromGitHub {
owner = "quotient-im";
repo = "libQuotient";
rev = version;
2021-10-26 07:13:40 +02:00
sha256 = "sha256-FPtxeZOfChIPi4e/h/eZkByH1QL3Fn0OJxe0dnMcTRw=";
};
2021-10-26 07:13:40 +02:00
buildInputs = [ qtmultimedia ];
nativeBuildInputs = [ cmake ];
2021-10-26 07:13:40 +02:00
cmakeFlags = [
# we need libqtolm for this
"-DQuotient_ENABLE_E2EE=OFF"
];
meta = with lib; {
2021-04-10 13:08:33 +02:00
description = "A Qt5 library to write cross-platform clients for Matrix";
homepage = "https://matrix.org/docs/projects/sdk/quotient";
license = licenses.lgpl21;
2020-12-29 23:16:54 +01:00
maintainers = with maintainers; [ colemickens ];
};
}