xmake: init at 2.7.9

This commit is contained in:
rewine
2023-05-29 14:03:39 +08:00
parent f1b6469e48
commit 643a4d7e46
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,46 @@
{ lib
, stdenv
, fetchurl
, pkg-config
, lua
, readline
, ncurses
, lz4
, tbox
, xmake-core-sv
}:
stdenv.mkDerivation rec {
pname = "xmake";
version = "2.7.9";
src = fetchurl {
url = "https://github.com/xmake-io/xmake/releases/download/v${version}/xmake-v${version}.tar.gz";
hash = "sha256-m0LYY0gz9IhbBbiUKd1gBE3KmSMvYJYyC42Ff7M9Ku8=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
lua
lua.pkgs.cjson
readline
ncurses
lz4
tbox
xmake-core-sv
];
configureFlags = [ "--external=y" ];
meta = with lib; {
description = "A cross-platform build utility based on Lua";
homepage = "https://xmake.io";
license = licenses.asl20;
platforms = lua.meta.platforms;
maintainers = with maintainers; [ rewine ];
};
}
+4
View File
@@ -19434,6 +19434,10 @@ with pkgs;
webdis = callPackage ../development/tools/database/webdis { };
xmake = callPackage ../development/tools/build-managers/xmake {
lua = lua5_4;
};
xc3sprog = callPackage ../development/embedded/xc3sprog { stdenv = gcc10StdenvCompat; };
xcb-imdkit = callPackage ../development/libraries/xcb-imdkit { };