49 lines
820 B
Nix
49 lines
820 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchurl
|
||
|
, pkg-config
|
||
|
, lua
|
||
|
, readline
|
||
|
, ncurses
|
||
|
, lz4
|
||
|
, tbox
|
||
|
, xmake-core-sv
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "xmake";
|
||
|
version = "2.8.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/xmake-io/xmake/releases/download/v${version}/xmake-v${version}.tar.gz";
|
||
|
hash = "sha256-nM0LV3CVaLNbB1EKjc+Ywir2aQ/xWgET2Cu+kh908l8=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
lua
|
||
|
lua.pkgs.cjson
|
||
|
readline
|
||
|
ncurses
|
||
|
lz4
|
||
|
tbox
|
||
|
xmake-core-sv
|
||
|
];
|
||
|
|
||
|
strictDeps = true;
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|
||
|
|