quill-log: 10.0.0 -> 10.0.1 (#420614)

authored by Nikolay Korotkiy and committed by GitHub a43007ac e4da1ae8

+9 -9
+9 -9
pkgs/by-name/qu/quill-log/package.nix
··· 5 5 stdenv, 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 9 9 pname = "quill-log"; 10 - version = "10.0.0"; 10 + version = "10.0.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "odygrd"; 14 14 repo = "quill"; 15 - rev = "v${version}"; 16 - hash = "sha256-za0ech+rkhhtFumrkMMJXccd14PKXoiBQPXSYcK8Y7A="; 15 + tag = "v${finalAttrs.version}"; 16 + hash = "sha256-MLdCw+erKFYajZ4gB1KXNjd3wNMVez1OPASQyn4DXtM="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ]; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 homepage = "https://github.com/odygrd/quill"; 23 23 changelog = "https://github.com/odygrd/quill/blob/master/CHANGELOG.md"; 24 24 downloadPage = "https://github.com/odygrd/quill"; 25 25 description = "Asynchronous Low Latency C++17 Logging Library"; 26 - platforms = platforms.all; 27 - license = licenses.mit; 28 - maintainers = [ maintainers.odygrd ]; 26 + platforms = lib.platforms.all; 27 + license = lib.licenses.mit; 28 + maintainers = [ lib.maintainers.odygrd ]; 29 29 }; 30 - } 30 + })