2017-05-07 06:01:54 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libscrypt";
|
2017-05-07 06:01:54 +01:00
|
|
|
version = "1.21";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "technion";
|
|
|
|
repo = "libscrypt";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1d76ys6cp7fi4ng1w3mz2l0p9dbr7ljbk33dcywyimzjz8bahdng";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildFlags = stdenv.lib.optional stdenv.isDarwin "LDFLAGS= CFLAGS_EXTRA=";
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2019-11-04 11:23:53 +00:00
|
|
|
installTargets = stdenv.lib.optional stdenv.isDarwin "install-osx";
|
2017-05-07 06:01:54 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Shared library that implements scrypt() functionality";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://lolware.net/2014/04/29/libscrypt.html";
|
2017-05-07 06:01:54 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ davidak ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|