b3sum: reformat

This commit is contained in:
Franz Pletz 2024-07-21 21:01:18 +02:00
parent bd2c511751
commit 0e6623970e
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,4 +1,8 @@
{ lib, fetchCrate, rustPlatform }:
{
lib,
fetchCrate,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "b3sum";
@ -15,8 +19,14 @@ rustPlatform.buildRustPackage rec {
description = "BLAKE3 cryptographic hash function";
mainProgram = "b3sum";
homepage = "https://github.com/BLAKE3-team/BLAKE3/";
maintainers = with lib.maintainers; [ fpletz ivan ];
license = with lib.licenses; [ cc0 asl20 ];
maintainers = with lib.maintainers; [
fpletz
ivan
];
license = with lib.licenses; [
cc0
asl20
];
changelog = "https://github.com/BLAKE3-team/BLAKE3/releases/tag/${version}";
};
}