about summary refs log tree commit diff
path: root/pkgs/top-level/lua-packages.nix
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-02-06 01:30:52 +0900
committerMatthieu Coudron <mattator@gmail.com>2019-02-13 14:12:44 +0900
commitce63fd43818e7296b632844f2e2e1156837ff314 (patch)
tree91cc28bee3cd5a5160bf428435c5f33f412c3873 /pkgs/top-level/lua-packages.nix
parentc789b88cdd2ade47fbdcb94f43c09dfe66b81c0b (diff)
downloadnixlib-ce63fd43818e7296b632844f2e2e1156837ff314.tar
nixlib-ce63fd43818e7296b632844f2e2e1156837ff314.tar.gz
nixlib-ce63fd43818e7296b632844f2e2e1156837ff314.tar.bz2
nixlib-ce63fd43818e7296b632844f2e2e1156837ff314.tar.lz
nixlib-ce63fd43818e7296b632844f2e2e1156837ff314.tar.xz
nixlib-ce63fd43818e7296b632844f2e2e1156837ff314.tar.zst
nixlib-ce63fd43818e7296b632844f2e2e1156837ff314.zip
luaPackages.luabitop: generated
Diffstat (limited to 'pkgs/top-level/lua-packages.nix')
-rw-r--r--pkgs/top-level/lua-packages.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index 4e890662477a..81c07c5d15ca 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -167,43 +167,6 @@ with self; {
     };
   };
 
-  luabitop = buildLuaPackage rec {
-    version = "1.0.2";
-    name = "bitop-${version}";
-
-    src = fetchurl {
-      url = "http://bitop.luajit.org/download/LuaBitOp-${version}.tar.gz";
-      sha256 = "16fffbrgfcw40kskh2bn9q7m3gajffwd2f35rafynlnd7llwj1qj";
-    };
-
-    buildFlags = stdenv.lib.optionalString stdenv.isDarwin "macosx";
-
-    disabled = isLua53;
-
-    postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
-      substituteInPlace Makefile --replace 10.4 10.5
-    '';
-
-    preBuild = ''
-      makeFlagsArray=(
-        ${stdenv.lib.optionalString stdenv.cc.isClang "CC=$CC"}
-        INCLUDES="-I${lua}/include"
-        LUA="${lua}/bin/lua");
-    '';
-
-    installPhase = ''
-      mkdir -p $out/lib/lua/${lua.luaversion}
-      install -p bit.so $out/lib/lua/${lua.luaversion}
-    '';
-
-    meta = with stdenv.lib; {
-      description = "C extension module for Lua which adds bitwise operations on numbers";
-      homepage = "http://bitop.luajit.org";
-      license = licenses.mit;
-      maintainers = with maintainers; [ ];
-    };
-  };
-
   http = buildLuaPackage rec {
     version = "0.2";
     name = "http-${version}";