summary refs log tree commit diff
path: root/pkgs/development/interpreters/lua-5
diff options
context:
space:
mode:
authorChristian Kauhaus <kc@flyingcircus.io>2018-09-21 15:54:48 +0200
committerChristian Kauhaus <kc@flyingcircus.io>2018-09-21 15:56:41 +0200
commit544eaaa52b59a81195b3ef40a2dd091f81eb0fb4 (patch)
treec8e5921d5981e7257db1e01da5b41189624e2554 /pkgs/development/interpreters/lua-5
parent9908e9cd80d20d24ee8e483d9a3040d4dee4ad37 (diff)
downloadnixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.tar
nixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.tar.gz
nixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.tar.bz2
nixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.tar.lz
nixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.tar.xz
nixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.tar.zst
nixpkgs-544eaaa52b59a81195b3ef40a2dd091f81eb0fb4.zip
lua: remove lua4 and lua5_0
Both versions are not maintained anymore upstream and have open security
issues, e.g. https://nvd.nist.gov/vuln/detail/CVE-2014-5461.

The same holds for lua5_1 but that seems to be in use in some places.

Re #47122
Re #47123
Diffstat (limited to 'pkgs/development/interpreters/lua-5')
-rw-r--r--pkgs/development/interpreters/lua-5/5.0.3.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/interpreters/lua-5/5.0.3.nix b/pkgs/development/interpreters/lua-5/5.0.3.nix
deleted file mode 100644
index d343ec6c63b..00000000000
--- a/pkgs/development/interpreters/lua-5/5.0.3.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{stdenv, fetchurl}:
-
-stdenv.mkDerivation {
-  name = "lua-5.0.3";
-
-  src = fetchurl {
-    url = https://www.lua.org/ftp/lua-5.0.3.tar.gz;
-    sha256 = "1193a61b0e08acaa6eee0eecf29709179ee49c71baebc59b682a25c3b5a45671";
-  };
-
-  hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
-
-  configurePhase = "sed -i -e 's/MYCFLAGS=.*/MYCFLAGS=-O3 -fomit-frame-pointer -fPIC/' config";
-  buildFlags = "all so sobin";
-  installFlags = "INSTALL_ROOT=$$out";
-  installTargets = "install soinstall";
-
-  meta = {
-    homepage = http://www.lua.org;
-    description = "Powerful, fast, lightweight, embeddable scripting language";
-    longDescription = ''
-      Lua combines simple procedural syntax with powerful data
-      description constructs based on associative arrays and extensible
-      semantics. Lua is dynamically typed, runs by interpreting bytecode
-      for a register-based virtual machine, and has automatic memory
-      management with incremental garbage collection, making it ideal
-      for configuration, scripting, and rapid prototyping.
-    '';
-    license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}