premake5: 5.0.0pre.alpha.11 -> 5.0.0-alpha12

The new premake fixes the issue in ebb2ca7574 for
the GNU Make target.
This commit is contained in:
Orivej Desh 2017-12-04 05:54:37 +00:00
parent ebb2ca7574
commit 3eccd0b11d

View File

@ -3,14 +3,14 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "premake-${version}";
version = "5.0.0pre.alpha.11";
name = "premake5-${version}";
version = "5.0.0-alpha12";
src = fetchFromGitHub {
owner = "premake";
repo = "premake-core";
rev = "5dfb0238bc309df04819dd430def621ce854678d";
sha256 = "0k9xbqrnbwj0hnmdgcrwn70py1kiqvr10l42aw42xnlmdyg1sgsc";
rev = "v${version}";
sha256 = "1h3hr96pdz94njn4bg02ldcz0k5j1x017d8svc7fdyvl2b77nqzf";
};
buildInputs = optional stdenv.isDarwin [ CoreServices ];