nixpkgs/pkgs/development/tools/toluapp/default.nix

32 lines
769 B
Nix
Raw Normal View History

2015-03-24 11:53:10 -07:00
{ stdenv, fetchFromGitHub, scons, lua }:
stdenv.mkDerivation rec {
2016-06-26 18:57:10 -07:00
version = "1.0.93";
2015-03-24 11:53:10 -07:00
name = "toluapp-${version}";
src = fetchFromGitHub {
2016-06-26 18:57:10 -07:00
owner = "LuaDist";
2015-03-24 11:53:10 -07:00
repo = "toluapp";
2016-06-26 18:57:10 -07:00
rev = "${version}";
sha256 = "0zd55bc8smmgk9j4cf0jpibb03lgsvl0knpwhplxbv93mcdnw7s0";
2015-03-24 11:53:10 -07:00
};
nativeBuildInputs = [ scons ];
buildInputs = [ lua ];
2015-03-24 11:53:10 -07:00
patches = [ ./environ-and-linux-is-kinda-posix.patch ];
preConfigure = ''
substituteInPlace config_posix.py \
--replace /usr/local $out
'';
2016-06-26 18:57:10 -07:00
meta = with stdenv.lib; {
description = "A tool to integrate C/Cpp code with Lua";
homepage = http://www.codenix.com/~tolua/;
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
platforms = with platforms; unix;
2015-03-24 11:53:10 -07:00
};
}