all repos — min @ vm

A small but practical concatenative programming language.

min.nimble

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
import 
  minpkg/core/meta

# Package

version       = pkgVersion
author        = pkgAuthor
description   = pkgDescription
license       = "MIT"
bin           = @[pkgName]
installExt    = @["nim", "c", "h", "a"]
installFiles  = @["min.yml", "min.nim", "prelude.min", "help.json"]
installDirs   = @["minpkg"]

# Dependencies

requires "nim >= 1.6.12"
requires "zippy >= 0.5.6 & < 0.6.0" 
requires "nimquery >= 2.0.1 & < 3.0.0" 
requires "minline >= 0.1.1 & < 0.2.0"

before install:
  exec "nimble install -y nifty"
  exec "nifty remove -f"
  exec "nifty install"