Unverified Commit 1e2d8610 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy
Browse files

quill-log: modernize

parent 5ff443eb
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})