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