runhs: Stack wrapper for single-file Haskell programs.

[ bsd3, program, tools ] [ Propose Tags ]

Stack wrapper for single-file Haskell programs. Declare package dependencies in the source code of your single-file Haskell program. Easily and reliably run your program, compile it, or load it in GHCi or Ghcid.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0.0.3, 1.0.0.4, 1.0.0.5, 1.0.0.6, 1.0.0.7, 1.0.0.8, 1.0.0.9
Dependencies base (>=4.11 && <5), bytestring (>=0.10.8.2 && <1), file-embed (>=0.0.10.1 && <1), process (>=1.6.3.0 && <2), terminal-size (>=0.3.2.1 && <1), text (>=1.2.3.1 && <2), word-wrap (>=0.4.1 && <1), yaml (>=0.8.32 && <1) [details]
License BSD-3-Clause
Copyright Copyright (C) 2020-2021 Daniel Brice
Author Daniel Brice
Maintainer danielbrice@gmail.com
Category Tools
Home page https://github.com/friedbrice/runhs#readme
Bug tracker https://github.com/friedbrice/runhs/issues
Source repo head: git clone https://github.com/friedbrice/runhs
Uploaded by danielbrice at 2021-02-01T23:47:47Z
Distributions
Executables runhs
Downloads 1019 total (16 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2021-02-02 [all 3 reports]

Readme for runhs-1.0.0.9

[back to package description]

runhs

Stack wrapper for single-file Haskell programs.

Declare package dependencies in the source code of your single-file Haskell program. Easily and reliably run your program, compile it, or load it in GHCi or Ghcid.

Install

  1. First, install Stack.

  2. Add Stack's install directory to your PATH.

  • Windows: Installing Stack automatically adds its install directory to your PATH.

  • Most Linux: echo 'export PATH="${HOME}/.local/bin:${PATH}"' >> ~/.profile && export PATH="${HOME}/.local/bin:${PATH}"

  • MacOS Pre-Catalina: echo 'export PATH="${HOME}/.local/bin:${PATH}"' >> ~/.bash_profile && export PATH="${HOME}/.local/bin:${PATH}"

  • MacOS Catalina and newer: echo 'export PATH="${HOME}/.local/bin:${PATH}"' >> ~/.zshrc && export PATH="${HOME}/.local/bin:${PATH}"

  1. Finally, use one of the following install methods.
  • Stack (recommended): stack install runhs

  • Download: Download the appropriate executable for your platform from the Releases page, unzip it, and put it somewhere on your PATH.

Usage

Add a block comment (the front matter) at the start of any single-file Haskell program in the following format:

{-
resolver: lts-16.6
packages:
  - bytestring
  - containers
-}

The front matter must be the first block comment in your file, and the comment delimiters {- and -} must appear on their own lines, just as above.

The resolver property is required and must be a valid Stackage resolver. The packages property is required if your Haskell program depends on external packages, but may be omitted if your Haskell program does not.

Once you have the appropriate front matter at the top of your file, you may load your program in Watch Mode or in Interactive Mode (a.k.a. REPL Mode) in GHCi, or run your program as a script, or compile your program, using the following command format.

runhs (watch|repl|script|compile) <file> [<args>]

Copyright (C) 2020-2021 Daniel Brice

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Neither the name of Daniel Brice nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.