libscrypt: init at 1.21

This commit is contained in:
davidak 2017-05-07 07:01:54 +02:00
parent 994299b7a9
commit 49c4f2b6f5
2 changed files with 30 additions and 0 deletions

@ -0,0 +1,28 @@
{ 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;
};
}

@ -2594,6 +2594,8 @@ with pkgs;
libcpuid = callPackage ../tools/misc/libcpuid { };
libscrypt = callPackage ../development/libraries/libscrypt { };
libsmi = callPackage ../development/libraries/libsmi { };
lesspipe = callPackage ../tools/misc/lesspipe { };