mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
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.
This commit is contained in:
parent
bf3dea4164
commit
6108e63a01
|
@ -2,6 +2,7 @@
|
|||
ansicolors,
|
||||
argparse,
|
||||
basexx,
|
||||
binaryheap,
|
||||
dkjson
|
||||
fifo
|
||||
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…
Reference in a new issue