Skip to content

Commit fc5e08c

Browse files
Merge pull request #316404 from odygrd/quill_init
quill-log init at 6.0.0
2 parents d27ba65 + 76a55aa commit fc5e08c

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15060,6 +15060,12 @@
1506015060
githubId = 158758;
1506115061
name = "Oliver Dunkl";
1506215062
};
15063+
odygrd = {
15064+
email = "[email protected]";
15065+
github = "odygrd";
15066+
githubId = 7397786;
15067+
name = "Odysseas Georgoudis";
15068+
};
1506315069
ofek = {
1506415070
email = "[email protected]";
1506515071
github = "ofek";
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
cmake,
3+
fetchFromGitHub,
4+
lib,
5+
stdenv,
6+
}:
7+
8+
stdenv.mkDerivation rec {
9+
pname = "quill-log";
10+
version = "6.0.0";
11+
12+
src = fetchFromGitHub {
13+
owner = "odygrd";
14+
repo = "quill";
15+
rev = "v${version}";
16+
hash = "sha256-hYnpMgxhL8TIkOzhxf4I/Eeix+BRecNYynuGPm/QwbA=";
17+
};
18+
19+
nativeBuildInputs = [ cmake ];
20+
21+
meta = with lib; {
22+
homepage = "https://github.com/odygrd/quill";
23+
changelog = "https://github.com/odygrd/quill/blob/master/CHANGELOG.md";
24+
downloadPage = "https://github.com/odygrd/quill";
25+
description = "Asynchronous Low Latency C++17 Logging Library";
26+
platforms = platforms.all;
27+
license = licenses.mit;
28+
maintainers = [ maintainers.odygrd ];
29+
};
30+
}

0 commit comments

Comments
 (0)