fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, fetchCrate, rustPlatform }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "b3sum";
5 version = "1.1.0";
6
7 src = fetchCrate {
8 inherit version pname;
9 sha256 = "sha256-x5gdJLcRMnmd0VLbV8cU9vrA6Ef7GysTh25bXnw6tsE=";
10 };
11
12 cargoSha256 = "sha256-+JVivP4Kppb+AoVq4XhXp4k8Hb+e9uX4u5n8KXp0kfk=";
13
14 meta = {
15 description = "BLAKE3 cryptographic hash function";
16 homepage = "https://github.com/BLAKE3-team/BLAKE3/";
17 maintainers = with lib.maintainers; [ fpletz ivan ];
18 license = with lib.licenses; [ cc0 asl20 ];
19 };
20}