tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
libquotient: 0.6.9 -> 0.6.11
Peter Hoeg
4 years ago
2cfa8b55
674a31bd
+9
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libquotient
default.nix
+9
-4
pkgs/development/libraries/libquotient/default.nix
reviewed
···
1
1
-
{ mkDerivation, lib, fetchFromGitHub, cmake, qtbase, qtmultimedia }:
1
1
+
{ mkDerivation, lib, fetchFromGitHub, cmake, qtmultimedia }:
2
2
3
3
mkDerivation rec {
4
4
pname = "libquotient";
5
5
-
version = "0.6.9";
5
5
+
version = "0.6.11";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "quotient-im";
9
9
repo = "libQuotient";
10
10
rev = version;
11
11
-
sha256 = "sha256-1YiS2b4lYknNSB+8LKB/s6AcF0yQVsakrkp6/Sjkczo=";
11
11
+
sha256 = "sha256-FPtxeZOfChIPi4e/h/eZkByH1QL3Fn0OJxe0dnMcTRw=";
12
12
};
13
13
14
14
-
buildInputs = [ qtbase qtmultimedia ];
14
14
+
buildInputs = [ qtmultimedia ];
15
15
16
16
nativeBuildInputs = [ cmake ];
17
17
+
18
18
+
cmakeFlags = [
19
19
+
# we need libqtolm for this
20
20
+
"-DQuotient_ENABLE_E2EE=OFF"
21
21
+
];
17
22
18
23
meta = with lib; {
19
24
description = "A Qt5 library to write cross-platform clients for Matrix";