tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qcoro: init at 0.3.0
Smitty
4 years ago
16ffcc8f
8f6b2808
+40
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
qcoro
default.nix
top-level
qt5-packages.nix
+38
pkgs/development/libraries/qcoro/default.nix
···
1
1
+
{ lib
2
2
+
, mkDerivation
3
3
+
, fetchFromGitHub
4
4
+
, cmake
5
5
+
, libpthreadstubs
6
6
+
, qtbase
7
7
+
}:
8
8
+
9
9
+
mkDerivation rec {
10
10
+
pname = "qcoro";
11
11
+
version = "0.3.0";
12
12
+
13
13
+
src = fetchFromGitHub {
14
14
+
owner = "danvratil";
15
15
+
repo = "qcoro";
16
16
+
rev = "v${version}";
17
17
+
sha256 = "09543hpy590dndmlxmcm8c58m97blhaii4wbjr655qxdanhhxgzi";
18
18
+
};
19
19
+
20
20
+
outputs = [ "out" "dev" ];
21
21
+
22
22
+
nativeBuildInputs = [
23
23
+
cmake
24
24
+
];
25
25
+
26
26
+
buildInputs = [
27
27
+
qtbase
28
28
+
libpthreadstubs
29
29
+
];
30
30
+
31
31
+
meta = with lib; {
32
32
+
description = "Library for using C++20 coroutines in connection with certain asynchronous Qt actions";
33
33
+
homepage = "https://github.com/danvratil/qcoro";
34
34
+
license = licenses.mit;
35
35
+
maintainers = with maintainers; [ smitop ];
36
36
+
platforms = platforms.linux;
37
37
+
};
38
38
+
}
+2
pkgs/top-level/qt5-packages.nix
···
174
174
175
175
qca-qt5 = callPackage ../development/libraries/qca-qt5 { };
176
176
177
177
+
qcoro = callPackage ../development/libraries/qcoro { };
178
178
+
177
179
qcsxcad = callPackage ../development/libraries/science/electronics/qcsxcad { };
178
180
179
181
qmltermwidget = callPackage ../development/libraries/qmltermwidget {