1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 11:10:03 +00:00

Merge pull request #316404 from odygrd/quill_init

quill-log init at 6.0.0
This commit is contained in:
Sandro 2024-07-29 16:40:24 +02:00 committed by GitHub
commit fc5e08c730
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

View file

@ -15060,6 +15060,12 @@
githubId = 158758;
name = "Oliver Dunkl";
};
odygrd = {
email = "odysseas.georgoudis@gmail.com";
github = "odygrd";
githubId = 7397786;
name = "Odysseas Georgoudis";
};
ofek = {
email = "oss@ofek.dev";
github = "ofek";

View file

@ -0,0 +1,30 @@
{
cmake,
fetchFromGitHub,
lib,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "quill-log";
version = "6.0.0";
src = fetchFromGitHub {
owner = "odygrd";
repo = "quill";
rev = "v${version}";
hash = "sha256-hYnpMgxhL8TIkOzhxf4I/Eeix+BRecNYynuGPm/QwbA=";
};
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 ];
};
}