Skip to content

Commit a43007a

Browse files
authored
quill-log: 10.0.0 -> 10.0.1 (#420614)
2 parents e4da1ae + 1e2d861 commit a43007a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pkgs/by-name/qu/quill-log/package.nix

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@
55
stdenv,
66
}:
77

8-
stdenv.mkDerivation rec {
8+
stdenv.mkDerivation (finalAttrs: {
99
pname = "quill-log";
10-
version = "10.0.0";
10+
version = "10.0.1";
1111

1212
src = fetchFromGitHub {
1313
owner = "odygrd";
1414
repo = "quill";
15-
rev = "v${version}";
16-
hash = "sha256-za0ech+rkhhtFumrkMMJXccd14PKXoiBQPXSYcK8Y7A=";
15+
tag = "v${finalAttrs.version}";
16+
hash = "sha256-MLdCw+erKFYajZ4gB1KXNjd3wNMVez1OPASQyn4DXtM=";
1717
};
1818

1919
nativeBuildInputs = [ cmake ];
2020

21-
meta = with lib; {
21+
meta = {
2222
homepage = "https://github.com/odygrd/quill";
2323
changelog = "https://github.com/odygrd/quill/blob/master/CHANGELOG.md";
2424
downloadPage = "https://github.com/odygrd/quill";
2525
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 ];
2929
};
30-
}
30+
})

0 commit comments

Comments
 (0)