summary refs log tree commit diff
path: root/pkgs/development/libraries/libkrunfw/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-01-27 12:01:56 +0000
committerGitHub <noreply@github.com>2023-01-27 12:01:56 +0000
commite11b11e7383dc9e79174c572b949a1a5884d124d (patch)
tree784140f4cf5095ede60e81d23188f3a6875f6aca /pkgs/development/libraries/libkrunfw/default.nix
parentdcb1b49be6864d21da07ad41559d3b08967e2232 (diff)
parent92b7725154fcb01cc3b5804025e89d6a2941cc77 (diff)
downloadnixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.tar
nixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.tar.gz
nixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.tar.bz2
nixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.tar.lz
nixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.tar.xz
nixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.tar.zst
nixpkgs-e11b11e7383dc9e79174c572b949a1a5884d124d.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/libraries/libkrunfw/default.nix')
-rw-r--r--pkgs/development/libraries/libkrunfw/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libkrunfw/default.nix b/pkgs/development/libraries/libkrunfw/default.nix
index f602299e239..13090776405 100644
--- a/pkgs/development/libraries/libkrunfw/default.nix
+++ b/pkgs/development/libraries/libkrunfw/default.nix
@@ -13,21 +13,21 @@
 assert sevVariant -> stdenv.isx86_64;
 stdenv.mkDerivation rec {
   pname = "libkrunfw";
-  version = "3.8.1";
+  version = "3.9.0";
 
   src = if stdenv.isLinux then fetchFromGitHub {
     owner = "containers";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-6jFIfTPjI6Eq0SFdQVxqqoBDW00AsDz/xHN+n6DezME=";
+    hash = "sha256-hpVE7g6V3nquZ3R5fQCcfRWuFDHJ3rgisezwdsDMaGg=";
   } else fetchurl {
     url = "https://github.com/containers/libkrunfw/releases/download/v${version}/v${version}-with_macos_prebuilts.tar.gz";
-    hash = "sha256-i7btjGBgb93tHshIS02Rp492iB4aG0N4UuRwv6Pkukg=";
+    hash = "sha256-moZ2LYLhZDb8Y8jgWbdgK6SbJ8lY8f356d5vKHc/54Q=";
   };
 
   kernelSrc = fetchurl {
-    url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.0.6.tar.xz";
-    hash = "sha256-hksFry2Gm6c9YanFlZ5FMaFBqyvXshdINnH2Jfl0f6o=";
+    url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.1.6.tar.xz";
+    hash = "sha256-Pk2OVh2lcDogWujXsr7WxcZPxCme68v9IEgeY7V9XuM=";
   };
 
   preBuild = ''
@@ -54,5 +54,6 @@ stdenv.mkDerivation rec {
     license = with licenses; [ lgpl2Only lgpl21Only ];
     maintainers = with maintainers; [ nickcao ];
     platforms = [ "x86_64-linux" "aarch64-darwin" ];
+    sourceProvenance = with sourceTypes; lib.optionals stdenv.isDarwin [ binaryNativeCode ];
   };
 }