luaPackages.datafile: init at 0.10-1

This commit is contained in:
Austin Horstman
2024-12-19 14:01:48 -06:00
parent 8af52ff6ba
commit 7319e39b0d
2 changed files with 25 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ cosmo,,,,,,
coxpcall,,,,1.17.0-1,,
cqueues,,,,,,vcunat
cyan,,,,,,
datafile,,,,,,
digestif,,,,,5.3,
dkjson,,,,,,
fennel,,,,,,misterio77
1 name rockspec ref server version luaversion maintainers
15 coxpcall 1.17.0-1
16 cqueues vcunat
17 cyan
18 datafile
19 digestif 5.3
20 dkjson
21 fennel misterio77

View File

@@ -387,6 +387,30 @@ buildLuarocksPackage {
};
}) {};
datafile = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder }:
buildLuarocksPackage {
pname = "datafile";
version = "0.10-1";
knownRockspec = (fetchurl {
url = "mirror://luarocks/datafile-0.10-1.rockspec";
sha256 = "0qj9m5qv84rqg9k981bnsvrbnmd1d6zqvl30471w0bx5w88zidyk";
}).outPath;
src = fetchFromGitHub {
owner = "hishamhm";
repo = "datafile";
rev = "v0.10";
hash = "sha256-l0jrSHkcvAeF5/HUXIV0wGLmmTNINXsQ05EjT/YFgw4=";
};
disabled = luaOlder "5.1";
meta = {
homepage = "http://github.com/hishamhm/datafile";
description = "A library for handling paths when loading data files";
license.fullName = "MIT/X11";
};
}) {};
digestif = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, lpeg, luaOlder, luafilesystem }:
buildLuarocksPackage {
pname = "digestif";