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

22 lines
551 B
Nix
Raw Normal View History

2013-09-02 18:49:08 -07:00
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "scrypt-${version}";
version = "1.2.0";
2013-09-02 18:49:08 -07:00
src = fetchurl {
url = "https://www.tarsnap.com/scrypt/${name}.tgz";
sha256 = "1m39hpfby0fdjam842773i5w7pa0qaj7f0r22jnchxsj824vqm0p";
2013-09-02 18:49:08 -07:00
};
buildInputs = [ openssl ];
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-02 18:49:08 -07:00
};
}