mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.7 KiB
Nix
52 lines
1.7 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, fixDarwinDylibNames }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libargon2";
|
|
version = "20190702";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "P-H-C";
|
|
repo = "phc-winner-argon2";
|
|
rev = version;
|
|
sha256 = "0p4ry9dn0mi9js0byijxdyiwx74p1nr8zj7wjpd1fjgqva4sk23i";
|
|
};
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
fixDarwinDylibNames
|
|
];
|
|
|
|
patches = [
|
|
# TODO: remove when https://github.com/P-H-C/phc-winner-argon2/pull/277 is merged + released
|
|
(fetchpatch {
|
|
url = "https://github.com/P-H-C/phc-winner-argon2/commit/cd1c1d8d204e4ec4557e358013567c097cb70562.patch";
|
|
sha256 = "0whqv8b6q9602n7vxpzbd8bk8wz22r1jz9x5lrm9z7ib3wz81c8a";
|
|
})
|
|
];
|
|
|
|
makeFlags = [
|
|
"AR=${stdenv.cc.targetPrefix}ar" # Fix cross-compilation
|
|
"PREFIX=${placeholder "out"}"
|
|
"ARGON2_VERSION=${version}"
|
|
"LIBRARY_REL=lib"
|
|
"PKGCONFIG_REL=lib"
|
|
] ++ lib.optionals stdenv.hostPlatform.isStatic [
|
|
"LIBRARIES=$(LIB_ST)"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Key derivation function that was selected as the winner of the Password Hashing Competition in July 2015";
|
|
longDescription = ''
|
|
A password-hashing function created by by Alex Biryukov, Daniel Dinu, and
|
|
Dmitry Khovratovich. Argon2 was declared the winner of the Password
|
|
Hashing Competition (PHC). There were 24 submissions and 9 finalists.
|
|
Catena, Lyra2, Makwa and yescrypt were given special recognition. The PHC
|
|
recommends using Argon2 rather than legacy algorithms.
|
|
'';
|
|
homepage = "https://www.argon2.com/";
|
|
license = with licenses; [ asl20 cc0 ];
|
|
maintainers = with maintainers; [ taeer olynch ];
|
|
mainProgram = "argon2";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|