quill-log: modernize

This commit is contained in:
Nikolay Korotkiy
2025-06-28 02:09:19 +04:00
parent 5ff443eb50
commit 1e2d861099
+7 -7
View File
@@ -5,26 +5,26 @@
stdenv,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "quill-log";
version = "10.0.1";
src = fetchFromGitHub {
owner = "odygrd";
repo = "quill";
rev = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-MLdCw+erKFYajZ4gB1KXNjd3wNMVez1OPASQyn4DXtM=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
meta = {
homepage = "https://github.com/odygrd/quill";
changelog = "https://github.com/odygrd/quill/blob/master/CHANGELOG.md";
downloadPage = "https://github.com/odygrd/quill";
description = "Asynchronous Low Latency C++17 Logging Library";
platforms = platforms.all;
license = licenses.mit;
maintainers = [ maintainers.odygrd ];
platforms = lib.platforms.all;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.odygrd ];
};
}
})