summary refs log tree commit diff
path: root/pkgs/development/libraries/libb2/default.nix
blob: eae08f0071cb7a8ebf1f57ace75d36686903d4c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl}:
with stdenv; with lib;
mkDerivation rec {
  name = "libb2-${meta.version}";

  src = fetchurl {
    url = "https://blake2.net/${name}.tar.gz";
    sha256 = "7829c7309347650239c76af7f15d9391af2587b38f0a65c250104a2efef99051";
  };

  configureFlags = [ "--enable-fat=yes" ];

  meta = {
    version = "0.97";
    description = "The BLAKE2 family of cryptographic hash functions";
    platforms = platforms.all;
    maintainers = with maintainers; [ dfoxfranke ];
    license = licenses.cc0;
  };
}