hslua-module-system

Lua module wrapper around Haskell's System module.

https://github.com/hslua/hslua

Version on this page:1.1.0
LTS Haskell 22.17:1.1.1
Stackage Nightly 2024-04-18:1.1.1
Latest on Hackage:1.1.1

See all snapshots hslua-module-system appears in

MIT licensed by Albert Krewinkel
Maintained by [email protected]
This version can be pinned in stack with:hslua-module-system-1.1.0@sha256:4e7dc9fb1670cb5b3f9c1aab6d136a32ad43aa051df2bbf582c97aed9c249ee2,3006

Module documentation for 1.1.0

Provides access to system information and functionality to Lua scripts via Haskell's System module.

This package is part of HsLua, a Haskell framework built around the embeddable scripting language Lua.

Changes

Changelog

hslua-module-system uses PVP Versioning.

hslua-module-system-1.1.0

  • Update to hslua-2.3; this includes the addition of type initializers to the module and type specifiers to the fields.

hslua-module-system-1.0.3

Released 2023-02-14.

  • Added new function cputime and field cputime_precision, e.g. for benchmarking.

hslua-module-system-1.0.2

Released 2022-02-19.

  • Adjusted package bounds, for hslua-core and hslua-packaging.

hslua-module-system-1.0.1

Released 2022-01-29.

  • Relaxed upper bound of hslua-core, hslua-marshalling, and hslua-packaging, allowing their respective version 2.1.

hslua-module-system-1.0.0

Released 2021-10-21.

  • Use hslua 2.0.

hslua-module-system-0.2.2.1

Released 2020-10-16.

  • Relaxed upper bound for hslua, allow hslua-1.3.*.

hslua-module-system-0.2.2

Released 2020-08-15.

  • Relaxed upper bound for hslua, allow hslua-1.2.*.
  • Improved documentation of internal types.
  • Use tasty-lua for unit tests.
  • Update CI to test with all GHC versions.

hslua-module-system-0.2.1

Released 2019-05-04.

  • Use module helpers made available with HsLua 1.0.3. This avoids code duplication when used with other hslua modules.

hslua-module-system-0.2.0

Released 2019-05-01.

All fields and functions are now exported from the Haskell module under the same name as that used in Lua.

New fields

  • arch: processor architecture.
  • compiler_name: Haskell compiler that was used to compile the module.
  • compiler_version: version of the compiler.
  • os: operating system.

New functions

  • mkdir: create a new directory.
  • rmdir: remove a directory.
  • with_env: perform action with custom environment.
  • with_wd: perform action in another directory.

Removed or renamed functions

  • currentdir was renamed to getwd.
  • chdir was renamed to setwd.
  • pwd was removed.

Misc

  • Fix typos and copy-paste errors in docs, tests.

hslua-module-system-0.1.0

Released 2019-04-26.

  • First version. Released on an unsuspecting world.