c06e06f343
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
34 lines
1 KiB
Nix
34 lines
1 KiB
Nix
{ stdenv, fetchgit, lib, dtc }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "kvmtool";
|
|
version = "unstable-2023-07-12";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git";
|
|
rev = "106e2ea7756d980454d68631b87d5e25ba4e4881";
|
|
sha256 = "sha256-wpc5DfHnui0lBVH4uOq6a7pXVUZStjNLRvauu6QpRvE=";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isAarch64 [ dtc ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
] ++ lib.optionals stdenv.hostPlatform.isAarch64 ([
|
|
"LIBFDT_DIR=${dtc}/lib"
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
"CROSS_COMPILE=aarch64-unknown-linux-gnu-"
|
|
"ARCH=arm64"
|
|
]);
|
|
|
|
meta = with lib; {
|
|
description = "A lightweight tool for hosting KVM guests";
|
|
homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git/tree/README";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ astro mfrw ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
|
mainProgram = "lkvm";
|
|
};
|
|
}
|