nixpkgs/pkgs/development/compilers/terra/default.nix

43 lines
1 KiB
Nix
Raw Normal View History

2016-01-18 00:50:10 +00:00
{ stdenv, lua, fetchFromGitHub, fetchurl, which, llvm, clang, ncurses }:
let luajitArchive = "LuaJIT-2.0.4.tar.gz";
luajitSrc = fetchurl {
url = "http://luajit.org/download/${luajitArchive}";
sha256 = "0zc0y7p6nx1c0pp4nhgbdgjljpfxsb5kgwp4ysz22l1p2bms83v2";
};
in stdenv.mkDerivation rec {
name = "terra-git-${version}";
version = "2016-01-06";
src = fetchFromGitHub {
owner = "zdevito";
repo = "terra";
rev = "914cb98b8adcd50b2ec8205ef5d6914d3547e281";
sha256 = "1q0dm9gkx2lh2d2sfgly6j5nw32qigmlj3phdvjp26bz99cvxq46";
};
patchPhase = ''
substituteInPlace Makefile --replace \
'-lcurses' '-lncurses'
'';
configurePhase = ''
mkdir -p build
cp ${luajitSrc} build/${luajitArchive}
'';
installPhase = ''
mkdir -p $out
cp -r "release/"* $out
'';
buildInputs = [ which lua llvm clang ncurses ];
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "A low-level counterpart to Lua";
maintainers = with maintainers; [ jb55 ];
license = licenses.mit;
};
}