mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
31 lines
698 B
Nix
31 lines
698 B
Nix
{
|
|
cmake,
|
|
fetchFromGitHub,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "quill-log";
|
|
version = "6.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "odygrd";
|
|
repo = "quill";
|
|
rev = "v${version}";
|
|
hash = "sha256-hnSdyaVOPppa6KCgD6NoD4PKn0jI4iGGPg3Tnx0KX3w=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|