567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
50 lines
1.0 KiB
Nix
50 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
kernel,
|
|
kernelModuleMakeFlags,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vmm_clock";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "voutilad";
|
|
repo = "vmm_clock";
|
|
rev = version;
|
|
hash = "sha256-XYRxrVixvImxr2j3qxBcv1df1LvPRKqKKgegW3HqUcQ=";
|
|
};
|
|
|
|
hardeningDisable = [
|
|
"pic"
|
|
"format"
|
|
];
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
|
|
extraConfig = ''
|
|
CONFIG_RTC_HCTOSYS yes
|
|
'';
|
|
|
|
makeFlags = kernelModuleMakeFlags ++ [
|
|
"DEPMOD=echo"
|
|
"INSTALL_MOD_PATH=$(out)"
|
|
"KERNELRELEASE=${kernel.modDirVersion}"
|
|
"KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
];
|
|
|
|
meta = {
|
|
description = "Experimental implementation of a kvmclock-derived clocksource for Linux guests under OpenBSD's hypervisor";
|
|
homepage = "https://github.com/voutilad/vmm_clock";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ qbit ];
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
];
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
}
|