summary refs log blame commit diff
path: root/pkgs/development/libraries/libscrypt/default.nix
blob: 479da52f8d9b6ecb570500f4c6620161e77d6327 (plain) (tree)





















                                                                            
                                                             




                                                
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "libscrypt-${version}";
  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)" ];
  installTargets = if stdenv.isDarwin then "install-osx" else "install";

  doCheck = true;

  meta = with stdenv.lib; {
    description = "Shared library that implements scrypt() functionality";
    homepage = https://lolware.net/2014/04/29/libscrypt.html;
    license = licenses.bsd2;
    maintainers = with maintainers; [ davidak ];
    platforms = platforms.unix;
  };
}