2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, sconsPackages, lua }:
|
2015-03-24 19:53:10 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-27 03:57:10 +02:00
|
|
|
version = "1.0.93";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "toluapp";
|
2015-03-24 19:53:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-06-27 03:57:10 +02:00
|
|
|
owner = "LuaDist";
|
2015-03-24 19:53:10 +01:00
|
|
|
repo = "toluapp";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2016-06-27 03:57:10 +02:00
|
|
|
sha256 = "0zd55bc8smmgk9j4cf0jpibb03lgsvl0knpwhplxbv93mcdnw7s0";
|
2015-03-24 19:53:10 +01:00
|
|
|
};
|
|
|
|
|
2019-01-06 20:29:52 +01:00
|
|
|
nativeBuildInputs = [ sconsPackages.scons_3_0_1 ];
|
2018-11-12 03:52:07 +01:00
|
|
|
buildInputs = [ lua ];
|
2015-03-24 19:53:10 +01:00
|
|
|
|
2019-01-26 04:56:55 +01:00
|
|
|
patches = [ ./environ-and-linux-is-kinda-posix.patch ./headers.patch ];
|
2015-03-24 19:53:10 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace config_posix.py \
|
|
|
|
--replace /usr/local $out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-06-27 03:57:10 +02:00
|
|
|
description = "A tool to integrate C/Cpp code with Lua";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.codenix.com/~tolua/";
|
2016-06-27 03:57:10 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; unix;
|
2015-03-24 19:53:10 +01:00
|
|
|
};
|
|
|
|
}
|