vmm_clock: 0.1.0 -> 0.2.0

This update[1] enables support for older kernels.

[1] https://github.com/voutilad/vmm_clock/releases/tag/0.2.0
This commit is contained in:
Aaron Bieber 2022-12-21 08:26:07 -07:00
parent 9f684b1517
commit 921664da3f
No known key found for this signature in database

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "vmm_clock";
version = "0.1.0";
version = "0.2.0";
src = fetchFromGitHub {
owner = "voutilad";
repo = "vmm_clock";
rev = "${version}";
sha256 = "0hg7ywznh6v11fywsz6f7w298bxph0wwm046zqaqncjvr4aizla4";
hash = "sha256-8z/N/dbkeFd40sH7jatNmSS62B88tC0jVgNljhxslOo=";
};
hardeningDisable = [ "pic" "format" ];
@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
];
meta = with lib; {
broken = kernel.kernelOlder "4.19";
description =
"Experimental implementation of a kvmclock-derived clocksource for Linux guests under OpenBSD's hypervisor";
homepage = "https://github.com/voutilad/vmm_clock";