lua*Packages.binaryheap: init at 0.4-1 (generated)

The generator wanted to do various changes in other packages as well,
but I didn't commit those.
wip/yesman
Vladimír Čunát 5 years ago
parent bf3dea4164
commit 6108e63a01
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 1
      maintainers/scripts/luarocks-packages.csv
  2. 20
      pkgs/development/lua-modules/generated-packages.nix
  3. 8
      pkgs/development/lua-modules/overrides.nix

@ -2,6 +2,7 @@
ansicolors,
argparse,
basexx,
binaryheap,
dkjson
fifo
inspect

1 # nix name, luarocks name, server, version/additionnal args
2 ansicolors,
3 argparse,
4 basexx,
5 binaryheap,
6 dkjson
7 fifo
8 inspect

@ -70,6 +70,26 @@ basexx = buildLuarocksPackage {
};
};
};
binaryheap = buildLuarocksPackage {
pname = "binaryheap";
version = "0.4-1";
src = fetchurl {
url = https://luarocks.org/binaryheap-0.4-1.src.rock;
sha256 = "11rd8r3bpinfla2965jgjdv1hilqdc1q6g1qla5978d7vzg19kpc";
};
disabled = ( luaOlder "5.1");
propagatedBuildInputs = [ lua ];
buildType = "builtin";
meta = {
homepage = "https://github.com/Tieske/binaryheap.lua";
description="Binary heap implementation in pure Lua";
license = {
fullName = "MIT/X11";
};
};
};
dkjson = buildLuarocksPackage {
pname = "dkjson";
version = "2.5-2";

@ -75,4 +75,10 @@ with super;
sed -i '/set(CMAKE_C_FLAGS/d' CMakeLists.txt
'';
});
}
binaryheap = super.binaryheap.overrideAttrs(oa: {
meta = oa.meta // {
maintainers = with pkgs.lib.maintainers; oa.meta.maintainers ++ [ vcunat ];
};
});
}

Loading…
Cancel
Save