nixpkgs/pkgs/tools/security/scrypt/default.nix
Austin Seipp 7399c600e4 Revert "nixpkgs: scrypt 1.1.6 -> 1.2.0"
This breaks the build. :(

This reverts commit 4022e07c1e.
2015-08-31 05:43:40 -05:00

22 lines
568 B
Nix

{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "scrypt-${version}";
version = "1.1.6";
src = fetchurl {
url = "https://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz";
sha256 = "dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8";
};
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 ];
};
}