Unverified Commit 412a17da authored by Nick Cao's avatar Nick Cao
Browse files

libkrun: init at 1.3.0

parent f2eeeae3
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, pkg-config
, glibc
, openssl
, libkrunfw
, sevVariant ? false
}:

stdenv.mkDerivation rec {
  pname = "libkrun";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "containers";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-qVyEqiqaQ8wfZhL5u+Bsaa1yXlgHUitSj5bo7FJ5Y8c=";
  };

  cargoDeps = rustPlatform.fetchCargoTarball {
    inherit src;
    hash = "sha256-jxSzhj1iU8qY+sZEVCYTaUqpaA4egjJi9qxrapASQF0=";
  };

  nativeBuildInputs = with rustPlatform;[
    cargoSetupHook
    rust.cargo
    rust.rustc
  ] ++ lib.optional sevVariant pkg-config;

  buildInputs = [
    glibc
    glibc.static
    (libkrunfw.override { inherit sevVariant; })
  ] ++ lib.optional sevVariant openssl;

  makeFlags = [ "PREFIX=${placeholder "out"}" ]
    ++ lib.optional sevVariant "SEV=1";

  meta = with lib; {
    description = "A dynamic library providing Virtualization-based process isolation capabilities";
    homepage = "https://github.com/containers/libkrun";
    license = licenses.asl20;
    maintainers = with maintainers; [ nickcao ];
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -23877,6 +23877,10 @@ with pkgs;
  libcgroup = callPackage ../os-specific/linux/libcgroup { };
  libkrun = callPackage ../development/libraries/libkrun { };
  libkrun-sev = callPackage ../development/libraries/libkrun { sevVariant = true; };
  libkrunfw = callPackage ../development/libraries/libkrunfw { };
  libnl = callPackage ../os-specific/linux/libnl { };