luabit: 1.0.2 -> 1.0.3

switch to DGNum's fork as well.

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
Raito Bezarius 2025-03-30 19:07:51 +02:00
parent 78476aa743
commit 6fb459e624

View file

@ -1,19 +1,22 @@
{ {
lib, lib,
stdenv, stdenv,
fetchurl, fetchFromGitea,
lua, lua,
gcc, gcc,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "luabit"; pname = "luabit";
version = "1.0.2"; version = "1.0.3";
src = fetchurl { src = fetchFromGitea {
url = "https://bitop.luajit.org/download/LuaBitOp-1.0.2.tar.gz"; domain = "git.dgnum.eu";
hash = "sha256-EgfJKT3NUuudymU40bhzUr1RD052CTj1BIQz9/Jyzpk="; owner = "DGNum";
}; repo = "luabitop";
rev = version;
hash = "sha256-++6Mi09C0ekZhgAVcP02plgp2gFtD9DB63zbjYv5VdY=";
};
nativeBuildInputs = [ nativeBuildInputs = [
gcc gcc