File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
pkgs/by-name/qu/quill-log Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1506015060 githubId = 158758;
1506115061 name = "Oliver Dunkl";
1506215062 };
15063+ odygrd = {
15064+ 15065+ github = "odygrd";
15066+ githubId = 7397786;
15067+ name = "Odysseas Georgoudis";
15068+ };
1506315069 ofek = {
15064150701506515071 github = "ofek";
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments