1 { lib, stdenv, fetchFromGitHub, fetchpatch, fixDarwinDylibNames }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
9 repo = "phc-winner-argon2";
11 sha256 = "0p4ry9dn0mi9js0byijxdyiwx74p1nr8zj7wjpd1fjgqva4sk23i";
14 nativeBuildInputs = lib.optionals stdenv.isDarwin [
19 # TODO: remove when https://github.com/P-H-C/phc-winner-argon2/pull/277 is merged + released
21 url = "https://github.com/P-H-C/phc-winner-argon2/commit/cd1c1d8d204e4ec4557e358013567c097cb70562.patch";
22 sha256 = "0whqv8b6q9602n7vxpzbd8bk8wz22r1jz9x5lrm9z7ib3wz81c8a";
27 "AR=${stdenv.cc.targetPrefix}ar" # Fix cross-compilation
28 "PREFIX=${placeholder "out"}"
29 "ARGON2_VERSION=${version}"
32 ] ++ lib.optionals stdenv.hostPlatform.isStatic [
37 description = "A key derivation function that was selected as the winner of the Password Hashing Competition in July 2015";
39 A password-hashing function created by by Alex Biryukov, Daniel Dinu, and
40 Dmitry Khovratovich. Argon2 was declared the winner of the Password
41 Hashing Competition (PHC). There were 24 submissions and 9 finalists.
42 Catena, Lyra2, Makwa and yescrypt were given special recognition. The PHC
43 recommends using Argon2 rather than legacy algorithms.
45 homepage = "https://www.argon2.com/";
46 license = with licenses; [ asl20 cc0 ];
47 maintainers = with maintainers; [ taeer olynch ];
48 mainProgram = "argon2";
49 platforms = platforms.all;