1{stdenv, fetchurl}:
2with stdenv; with lib;
3mkDerivation rec {
4 name = "libb2-${meta.version}";
5
6 meta = {
7 version = "0.97";
8 description = "The BLAKE2 family of cryptographic hash functions";
9 platforms = platforms.all;
10 maintainers = with maintainers; [ dfoxfranke ];
11 license = licenses.cc0;
12 };
13
14 src = fetchurl {
15 url = "https://blake2.net/${name}.tar.gz";
16 sha256 = "7829c7309347650239c76af7f15d9391af2587b38f0a65c250104a2efef99051";
17 };
18}