mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
Merge pull request #86075 from teto/mpack
minor tweaks to develop on luaPackages.mpack
This commit is contained in:
commit
66c04a191e
2 changed files with 7 additions and 1 deletions
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||
pname = "libmpack";
|
||||
version = "1.0.5";
|
||||
src = fetchFromGitHub {
|
||||
owner = "tarruda";
|
||||
owner = "libmpack";
|
||||
repo = "libmpack";
|
||||
rev = version;
|
||||
sha256 = "0rai5djdkjz7bsn025k5489in7r1amagw1pib0z4qns6b52kiar2";
|
||||
|
|
|
@ -294,6 +294,12 @@ with super;
|
|||
};
|
||||
});
|
||||
|
||||
mpack = super.mpack.override({
|
||||
buildInputs = [ pkgs.libmpack ];
|
||||
# the rockspec doesn't use the makefile so you may need to export more flags
|
||||
USE_SYSTEM_LUA = "yes";
|
||||
USE_SYSTEM_MPACK = "yes";
|
||||
});
|
||||
|
||||
rapidjson = super.rapidjson.override({
|
||||
preBuild = ''
|
||||
|
|
Loading…
Reference in a new issue