2022-08-21 13:32:41 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchurl
|
|
|
|
, flex
|
|
|
|
, bison
|
|
|
|
, bc
|
|
|
|
, elfutils
|
|
|
|
, python3
|
|
|
|
, sevVariant ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert sevVariant -> stdenv.isx86_64;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libkrunfw";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "3.10.0";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2022-09-14 18:05:37 +00:00
|
|
|
src = if stdenv.isLinux then fetchFromGitHub {
|
2022-08-21 13:32:41 +00:00
|
|
|
owner = "containers";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-24 00:07:29 +00:00
|
|
|
hash = "sha256-yL5D8oOGucLWi4kFPxan5Gq+jIkVSDOW/v1+zKg3G+o=";
|
2022-09-14 18:05:37 +00:00
|
|
|
} else fetchurl {
|
|
|
|
url = "https://github.com/containers/libkrunfw/releases/download/v${version}/v${version}-with_macos_prebuilts.tar.gz";
|
2023-03-24 00:07:29 +00:00
|
|
|
hash = "sha256-Q7n+Og+eAnHSQm7kLUN0uV+CKcdtLBYAgt7Q0+CxEfA=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
kernelSrc = fetchurl {
|
2023-03-24 00:07:29 +00:00
|
|
|
url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.2.1.tar.xz";
|
|
|
|
hash = "sha256-L8wH4ckOpM4Uj1D5vusNygtuSzeado3oq8ekom8lJTQ=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
2022-09-14 18:05:37 +00:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace 'curl $(KERNEL_REMOTE) -o $(KERNEL_TARBALL)' 'ln -s $(kernelSrc) $(KERNEL_TARBALL)' \
|
|
|
|
--replace 'gcc' '$(CC)'
|
2022-08-21 13:32:41 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ flex bison bc python3 python3.pkgs.pyelftools ];
|
2022-09-14 18:05:37 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ elfutils ];
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2022-09-14 18:05:37 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=${placeholder "out"}"
|
|
|
|
"SONAME_Darwin=-Wl,-install_name,${placeholder "out"}/lib/libkrunfw.dylib"
|
|
|
|
] ++ lib.optional sevVariant "SEV=1";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A dynamic library bundling the guest payload consumed by libkrun";
|
|
|
|
homepage = "https://github.com/containers/libkrunfw";
|
|
|
|
license = with licenses; [ lgpl2Only lgpl21Only ];
|
|
|
|
maintainers = with maintainers; [ nickcao ];
|
2022-12-02 08:20:57 +00:00
|
|
|
platforms = [ "x86_64-linux" "aarch64-darwin" ];
|
2023-02-02 18:25:31 +00:00
|
|
|
sourceProvenance = with sourceTypes; lib.optionals stdenv.isDarwin [ binaryNativeCode ];
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
}
|