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

31 lines
801 B
Nix
Raw Normal View History

2013-09-03 01:49:08 +00:00
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "scrypt-${version}";
version = "1.2.0";
2013-09-03 01:49:08 +00:00
src = fetchurl {
url = "https://www.tarsnap.com/scrypt/${name}.tgz";
sha256 = "1m39hpfby0fdjam842773i5w7pa0qaj7f0r22jnchxsj824vqm0p";
2013-09-03 01:49:08 +00:00
};
buildInputs = [ openssl ];
patchPhase = ''
substituteInPlace Makefile \
--replace "command -p mv" "mv"
substituteInPlace Makefile.in \
--replace "command -p mv" "mv"
substituteInPlace autocrap/Makefile.am \
--replace "command -p mv" "mv"
'';
2013-09-03 01:49:08 +00:00
meta = {
description = "Encryption utility";
homepage = https://www.tarsnap.com/scrypt.html;
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
2013-09-03 01:49:08 +00:00
};
}