nixpkgs/pkgs/by-name/qu/quill-log/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
698 B
Nix
Raw Normal View History

2024-06-01 12:17:06 +00:00
{
cmake,
fetchFromGitHub,
lib,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "quill-log";
2024-10-05 21:29:18 +00:00
version = "7.3.0";
2024-06-01 12:17:06 +00:00
src = fetchFromGitHub {
owner = "odygrd";
repo = "quill";
rev = "v${version}";
2024-10-05 21:29:18 +00:00
hash = "sha256-wExPgq+La0PCTrUajn8VYWw6uReXHoAVngygMJ2B/Qs=";
2024-06-01 12:17:06 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
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 ];
};
}