mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
quill-log: init at 6.0.0
This commit is contained in:
parent
61c1d28215
commit
ea7a455700
30
pkgs/by-name/qu/quill-log/package.nix
Normal file
30
pkgs/by-name/qu/quill-log/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user