about summary refs log tree commit diff
path: root/pkgs/tools/security/b2sum/default.nix
blob: 9c14ad974b69c2d0bf6b98c7f3afd26ba292f9ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, openmp }:

stdenv.mkDerivation rec {
  version = "20160619";
  name = "b2sum-${version}";

  src = fetchurl {
    url = "https://github.com/BLAKE2/BLAKE2/archive/${version}.tar.gz";
    sha256 = "0csnlp6kwlyla5s4r6bsrx2jgcwrm9qzisnvfdhmqsz5r8y87b6b";
  };
  postUnpack = "sourceRoot=$sourceRoot/b2sum";

  buildInputs = [ openmp ];

  makeFlags = stdenv.lib.optional (isNull openmp) "NO_OPENMP=1";
  installFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "The b2sum utility is similar to the md5sum or shasum utilities but for BLAKE2";
    homepage = "https://blake2.net";
    license = with licenses; [ asl20 cc0 openssl ];
    maintainers = with maintainers; [ kirelagin ];
    platforms = platforms.all;
  };
}