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,
|
ansicolors,
|
||||||
argparse,
|
argparse,
|
||||||
basexx,
|
basexx,
|
||||||
|
binaryheap,
|
||||||
dkjson
|
dkjson
|
||||||
fifo
|
fifo
|
||||||
inspect
|
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 {
|
dkjson = buildLuarocksPackage {
|
||||||
pname = "dkjson";
|
pname = "dkjson";
|
||||||
version = "2.5-2";
|
version = "2.5-2";
|
||||||
|
@ -75,4 +75,10 @@ with super;
|
|||||||
sed -i '/set(CMAKE_C_FLAGS/d' CMakeLists.txt
|
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 New Issue
Block a user