io: 2013.12.04 -> 2015.11.11

Updating IO language to latest version
This commit is contained in:
Rahul Gopinath 2016-06-07 23:51:28 -07:00
parent 109096247a
commit c860de987d
1 changed files with 34 additions and 14 deletions

View File

@ -1,32 +1,52 @@
{ stdenv, fetchurl, cmake, zlib, sqlite, gmp, libffi, cairo, ncurses, { stdenv, fetchFromGitHub, cmake, zlib, sqlite, gmp, libffi, cairo,
freetype, mesa, libpng, libtiff, libjpeg, readline, libsndfile, libxml2, ncurses, freetype, mesa, libpng, libtiff, libjpeg, readline, libsndfile,
freeglut, libsamplerate, pcre, libevent, libedit, yajl, libxml2, freeglut, libsamplerate, pcre, libevent, libedit, yajl,
python, openssl, glfw python3, openssl, glfw, pkgconfig, libpthreadstubs, libXdmcp, libmemcached
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "io-2013.12.04"; name = "io-2015.11.11";
src = fetchurl { src = fetchFromGitHub {
url = http://github.com/stevedekorte/io/tarball/2013.12.04; owner = "stevedekorte";
name = "io-2013.12.04.tar.gz"; repo = "io";
sha256 = "0kvwr32xdpcr32rnv301xr5l89185dsisbj4v465m68isas0gjm5"; rev = "1fc725e0a8635e2679cbb20521f4334c25273caa";
sha256 = "0ll2kd72zy8vf29sy0nnx3awk7nywpwpv21rvninjjaqkygrc0qw";
}; };
buildInputs = [ buildInputs = [
cmake zlib sqlite gmp libffi cairo ncurses freetype mesa cmake zlib sqlite gmp libffi cairo ncurses freetype
libpng libtiff libjpeg readline libsndfile libxml2 mesa libpng libtiff libjpeg readline libsndfile libxml2
freeglut libsamplerate pcre libevent libedit yajl freeglut libsamplerate pcre libevent libedit yajl
pkgconfig glfw openssl libpthreadstubs libXdmcp
libmemcached python3
]; ];
configurePhase=''
# The Addon generation (AsyncRequest and a others checked) seems to have
# trouble with building on Virtual machines. Disabling them until it
# can be fully investigated.
sed -ie \
"s/add_subdirectory(addons)/#add_subdirectory(addons)/g" \
CMakeLists.txt
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX="$out" ..
'';
installPhase=''
make install
'';
# for gcc5; c11 inline semantics breaks the build # for gcc5; c11 inline semantics breaks the build
NIX_CFLAGS_COMPILE = "-fgnu89-inline"; NIX_CFLAGS_COMPILE = "-fgnu89-inline";
meta = { meta = with stdenv.lib; {
description = "Io programming language"; description = "Io programming language";
maintainers = with stdenv.lib.maintainers; [ maintainers = with maintainers; [
raskin raskin
z77z z77z
vrthra
]; ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }