f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
775 B
Nix
29 lines
775 B
Nix
{ 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;
|
|
};
|
|
}
|