From ea7a455700ab28840e41bbaeb36954dc2f879150 Mon Sep 17 00:00:00 2001 From: Odysseas Georgoudis Date: Sat, 1 Jun 2024 13:17:06 +0100 Subject: [PATCH 1/2] quill-log: init at 6.0.0 --- pkgs/by-name/qu/quill-log/package.nix | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pkgs/by-name/qu/quill-log/package.nix diff --git a/pkgs/by-name/qu/quill-log/package.nix b/pkgs/by-name/qu/quill-log/package.nix new file mode 100644 index 000000000000..e34be8be3eef --- /dev/null +++ b/pkgs/by-name/qu/quill-log/package.nix @@ -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 ]; + }; +} From 76a55aafc1bf1b1cce70749a99ac173ae745ffd4 Mon Sep 17 00:00:00 2001 From: Odysseas Georgoudis Date: Mon, 10 Jun 2024 20:59:47 +0300 Subject: [PATCH 2/2] maintainers: add odygrd --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index be93cb6af798..737476043ed5 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -15262,6 +15262,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";