package = "argon2"
version = "3.0.1-2"
source = {
   url = "git+https://github.com/thibaultcha/lua-argon2",
   tag = "3.0.1"
}
description = {
   summary = "Lua C binding for the Argon2 password hashing function",
   homepage = "https://github.com/thibaultcha/lua-argon2",
   license = "MIT"
}
external_dependencies = {
   ARGON2 = {
      header = "argon2.h",
      library = "argon2"
   }
}
build = {
   type = "builtin",
   modules = {
      argon2 = {
         incdirs = {
            "$(ARGON2_INCDIR)"
         },
         libdirs = {
            "$(ARGON2_LIBDIR)"
         },
         libraries = {
            "argon2"
         },
         sources = {
            "src/argon2.c"
         }
      }
   }
}
