2021-01-23 12:26:19 +00:00
|
|
|
{lib, stdenv, fetchurl, unzip}:
|
2013-04-08 20:06:54 +01:00
|
|
|
|
|
|
|
let baseName = "premake";
|
|
|
|
version = "3.7";
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${baseName}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-28 12:07:42 +00:00
|
|
|
url = "mirror://sourceforge/sourceforge/premake/${baseName}-src-${version}.zip";
|
2013-04-08 20:06:54 +01:00
|
|
|
sha256 = "b59841a519e75d5b6566848a2c5be2f91455bf0cc6ae4d688fcbd4c40db934d5";
|
|
|
|
};
|
|
|
|
|
2021-02-20 21:01:53 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2013-04-08 20:06:54 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 bin/premake $out/bin/premake
|
|
|
|
'';
|
|
|
|
|
2018-12-03 01:51:27 +00:00
|
|
|
premake_cmd = "premake";
|
2018-11-27 00:00:08 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2013-04-08 20:06:54 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://industriousone.com/premake";
|
2013-04-08 20:06:54 +01:00
|
|
|
description = "A simple build configuration and project generation tool using lua";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.unix;
|
2013-04-08 20:06:54 +01:00
|
|
|
};
|
|
|
|
}
|