about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-12-02 19:51:27 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2018-12-08 14:47:13 -0600
commita27c51f71fca2232febdcb44ff1c5ab8521f9e99 (patch)
treedb5e516ae763aac7d61cee30b82e82b3f692cc45
parentbb962eb2a2d039cb2430d0ffda51ae6a4b5467f2 (diff)
downloadnixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.tar
nixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.tar.gz
nixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.tar.bz2
nixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.tar.lz
nixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.tar.xz
nixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.tar.zst
nixlib-a27c51f71fca2232febdcb44ff1c5ab8521f9e99.zip
premake3: use premake3 -> premake
premake3 only has the "premake" executable. This is a little confusing
because premake4 and premake5 both have the version suffix.

Fixes #51744
-rw-r--r--pkgs/development/tools/misc/premake/3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/premake/3.nix b/pkgs/development/tools/misc/premake/3.nix
index 8b02bf96fd57..a94614af7967 100644
--- a/pkgs/development/tools/misc/premake/3.nix
+++ b/pkgs/development/tools/misc/premake/3.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
     install -Dm755 bin/premake $out/bin/premake
   '';
 
-  premake_cmd = "premake3";
+  premake_cmd = "premake";
   setupHook = ./setup-hook.sh;
 
   meta = {