biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / qu / quill-log / package.nix
blob131deb7c08ef1fe0b71e531949d52ac1c1962cfb
2   cmake,
3   fetchFromGitHub,
4   lib,
5   stdenv,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "quill-log";
10   version = "7.3.0";
12   src = fetchFromGitHub {
13     owner = "odygrd";
14     repo = "quill";
15     rev = "v${version}";
16     hash = "sha256-wExPgq+La0PCTrUajn8VYWw6uReXHoAVngygMJ2B/Qs=";
17   };
19   nativeBuildInputs = [ cmake ];
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   };