nixpkgs/pkgs/development/libraries/libscrypt/default.nix

29 lines
748 B
Nix
Raw Normal View History

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