lol
at 15.09-beta 21 lines 568 B view raw
1{ stdenv, fetchurl, openssl }: 2 3stdenv.mkDerivation rec { 4 name = "scrypt-${version}"; 5 version = "1.1.6"; 6 7 src = fetchurl { 8 url = "https://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz"; 9 sha256 = "dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8"; 10 }; 11 12 buildInputs = [ openssl ]; 13 14 meta = { 15 description = "Encryption utility"; 16 homepage = https://www.tarsnap.com/scrypt.html; 17 license = stdenv.lib.licenses.bsd2; 18 platforms = stdenv.lib.platforms.all; 19 maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; 20 }; 21}