nixpkgs/pkgs/tools/security/scrypt/default.nix

28 lines
724 B
Nix
Raw Normal View History

2013-09-03 01:49:08 +00:00
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "scrypt-${version}";
2017-10-12 04:40:56 +00:00
version = "1.2.1";
2013-09-03 01:49:08 +00:00
src = fetchurl {
url = "https://www.tarsnap.com/scrypt/${name}.tgz";
2017-10-12 04:40:56 +00:00
sha256 = "0xy5yhrwwv13skv9im9vm76rybh9f29j2dh4hlh2x01gvbkza8a6";
2013-09-03 01:49:08 +00:00
};
buildInputs = [ openssl ];
patchPhase = ''
2017-10-12 04:40:56 +00:00
for f in Makefile.in autotools/Makefile.am libcperciva/cpusupport/Build/cpusupport.sh ; do
substituteInPlace $f --replace "command -p " ""
done
'';
2017-10-12 04:40:56 +00:00
meta = with stdenv.lib; {
description = "Encryption utility";
homepage = https://www.tarsnap.com/scrypt.html;
2017-10-12 04:40:56 +00:00
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice ];
2013-09-03 01:49:08 +00:00
};
}