3
0
Fork 0
forked from mirrors/nixpkgs

toluapp: 1.0.92 -> 1.0.93 (#16539)

This commit is contained in:
Rahul Gopinath 2016-06-26 18:57:10 -07:00 committed by Franz Pletz
parent 601d4f5523
commit e45ed9e780

View file

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, scons, lua }: { stdenv, fetchFromGitHub, scons, lua }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.0.92"; version = "1.0.93";
name = "toluapp-${version}"; name = "toluapp-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "eddieringle"; owner = "LuaDist";
repo = "toluapp"; repo = "toluapp";
rev = "b1e680dc486c17128a3c21f89db1693ff06c02b1"; rev = "${version}";
sha256 = "1d1a9bll9825dg4mz71vwykvfd3s5zi2yvzbfsvlr3qz1l3zqfwb"; sha256 = "0zd55bc8smmgk9j4cf0jpibb03lgsvl0knpwhplxbv93mcdnw7s0";
}; };
buildInputs = [ lua scons ]; buildInputs = [ lua scons ];
@ -26,8 +26,10 @@ stdenv.mkDerivation rec {
installPhase = ''scons install''; installPhase = ''scons install'';
meta = { meta = with stdenv.lib; {
license = stdenv.lib.licenses.mit; description = "A tool to integrate C/Cpp code with Lua";
homepage = http://www.codenix.com/~tolua/;
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
}; };
} }