mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
c66aaf1995
* update scrypt * enable running of tests * build development library libscrypt-kdf, install to lib output, headers to dev * default output remains untouched: contains binary plus man pages
38 lines
949 B
Nix
38 lines
949 B
Nix
{ stdenv, fetchurl, openssl, utillinux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "scrypt";
|
|
version = "1.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.tarsnap.com/scrypt/${pname}-${version}.tgz";
|
|
sha256 = "1hnl0r6pmyxiy4dmafmqk1db7wpc0x9rqpzqcwr9d2cmghcj6byz";
|
|
};
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
configureFlags = [ "--enable-libscrypt-kdf" ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
patchPhase = ''
|
|
for f in Makefile.in autotools/Makefile.am libcperciva/cpusupport/Build/cpusupport.sh configure ; do
|
|
substituteInPlace $f --replace "command -p " ""
|
|
done
|
|
|
|
patchShebangs tests/test_scrypt.sh
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
checkInputs = [ utillinux ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Encryption utility";
|
|
homepage = "https://www.tarsnap.com/scrypt.html";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|