pkg(nim-1.4.4): Add nim 1.4.4

This commit is contained in:
Dan Vargas 2021-03-17 20:49:21 -05:00
parent bcbdda6f66
commit 599b1f793d
6 changed files with 35 additions and 0 deletions

18
packages/nim/1.4.4/build.sh vendored Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
PREFIX=$(realpath $(dirname $0))
mkdir -p build
cd build
# Prebuilt binary - source *can* be built, but it requires gcc
curl -L "https://nim-lang.org/download/nim-1.4.4-linux_x64.tar.xz" -o nim.tar.xz
tar xf nim.tar.xz --strip-components=1
rm nim.tar.xz
./install.sh "$PREFIX"
cd ../
rm -rf build