terra: touchups

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2019-09-18 21:44:55 -05:00
parent 760b677c19
commit 5cc70a7b6b
No known key found for this signature in database
GPG Key ID: 25D2038DEB08021D

View File

@ -1,4 +1,6 @@
{ stdenv, fetchFromGitHub, fetchurl, llvmPackages, ncurses, lua }: { stdenv, fetchurl, fetchFromGitHub
, llvmPackages, ncurses, lua
}:
let let
luajitArchive = "LuaJIT-2.0.5.tar.gz"; luajitArchive = "LuaJIT-2.0.5.tar.gz";
@ -49,9 +51,9 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A low-level counterpart to Lua"; description = "A low-level counterpart to Lua";
homepage = http://terralang.org/; homepage = http://terralang.org/;
platforms = platforms.x86_64; platforms = platforms.x86_64;
maintainers = with maintainers; [ jb55 ]; maintainers = with maintainers; [ jb55 thoughtpolice ];
license = licenses.mit; license = licenses.mit;
}; };
} }