Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/tools/misc/graylog/5.2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
let
buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
version = "5.2.4";
sha256 = "sha256-TbZMRMLpYlg6wrsC+tDEk8sLYJ1nwJum/rL30CEGQcw=";
version = "5.2.7";
sha256 = "sha256-so9IHX0r3dmj5wLrLtQgrcXk+hu6E8/1d7wJu1XDcVA=";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer hash = ... to sha256 = ... Both currently work, but the former will make it easier if the algorithm ever needs to change.

Since there could be different hashing algorithms in use, this make sense.

More info: https://nixos.org/manual/nixpkgs/stable/#fetchurl

Nixpkgs contributors are currently recommended to use hash.

maintainers = [ lib.maintainers.f2k1de ];
license = lib.licenses.sspl;
}