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

62 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchFromGitHub
, llvmPackages, ncurses, lua
}:
let
2018-12-21 11:57:16 +00:00
luajitArchive = "LuaJIT-2.0.5.tar.gz";
luajitSrc = fetchurl {
url = "http://luajit.org/download/${luajitArchive}";
2018-12-21 11:57:16 +00:00
sha256 = "0yg9q4q6v028bgh85317ykc9whgxgysp76qzaqgq55y6jy11yjw7";
};
in
stdenv.mkDerivation rec {
pname = "terra-git";
2018-12-21 11:57:16 +00:00
version = "1.0.0-beta1";
2016-01-18 00:50:10 +00:00
src = fetchFromGitHub {
owner = "zdevito";
repo = "terra";
2018-12-21 11:57:16 +00:00
rev = "release-${version}";
sha256 = "1blv3mbmlwb6fxkck6487ck4qq67cbwq6s1zlp86hy2wckgf8q2c";
2016-01-18 00:50:10 +00:00
};
outputs = [ "bin" "dev" "out" "static" ];
patches = [ ./nix-cflags.patch ];
postPatch = ''
2016-01-18 00:50:10 +00:00
substituteInPlace Makefile --replace \
'-lcurses' '-lncurses'
'';
preBuild = ''
cat >Makefile.inc<<EOF
CLANG = ${stdenv.lib.getBin llvmPackages.clang-unwrapped}/bin/clang
LLVM_CONFIG = ${stdenv.lib.getBin llvmPackages.llvm}/bin/llvm-config
EOF
2016-01-18 00:50:10 +00:00
mkdir -p build
cp ${luajitSrc} build/${luajitArchive}
'';
installPhase = ''
2019-04-27 13:47:19 +00:00
install -Dm755 -t $bin/bin release/bin/terra
install -Dm755 -t $out/lib release/lib/terra${stdenv.hostPlatform.extensions.sharedLibrary}
install -Dm644 -t $static/lib release/lib/libterra.a
mkdir -pv $dev/include
cp -rv release/include/terra $dev/include
2019-04-27 13:47:19 +00:00
'';
2016-01-18 00:50:10 +00:00
buildInputs = with llvmPackages; [ lua llvm clang-unwrapped ncurses ];
2016-01-18 00:50:10 +00:00
meta = with stdenv.lib; {
description = "A low-level counterpart to Lua";
homepage = http://terralang.org/;
platforms = platforms.x86_64;
maintainers = with maintainers; [ jb55 thoughtpolice ];
license = licenses.mit;
2016-01-18 00:50:10 +00:00
};
}