mirror of https://github.com/materusPL/Nixerus.git
xmake: init package
This commit is contained in:
parent
677493660e
commit
0bdb22eeb3
|
@ -19,4 +19,6 @@ rec {
|
|||
|
||||
polymc = pkgs.qt6Packages.callPackage ./apps/games/polymc {};
|
||||
|
||||
xmake = callPackage ./dev/xmake {};
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xmake";
|
||||
version = "v2.7.9";
|
||||
src = fetchFromGitHub {
|
||||
owner = "xmake-io";
|
||||
repo = "xmake";
|
||||
rev = version;
|
||||
sha256 = "sha256-Op13Rx+meY6ZN2xvyj/9rNUPmXsHMQoVJSpxZCiRc6A=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cross-platform build utility based on Lua";
|
||||
homepage = "https://xmake.io";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue