about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/crun
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-11-26 06:54:40 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-11-26 08:53:19 +1000
commit3a7a8f5133ddca8676aa8cce1c1914d4d453a09c (patch)
tree52bbed00fe116a0ab944cac50406fece8ea18033 /pkgs/applications/virtualization/crun
parent7ab5323cfb6664df04acf9bf4b014e511ada20e2 (diff)
crun: 1.7 -> 1.7.1
https://github.com/containers/crun/releases/tag/1.7.1
Diffstat (limited to 'pkgs/applications/virtualization/crun')
-rw-r--r--pkgs/applications/virtualization/crun/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/virtualization/crun/default.nix b/pkgs/applications/virtualization/crun/default.nix
index 810fefa2863f8..82d9b251292a2 100644
--- a/pkgs/applications/virtualization/crun/default.nix
+++ b/pkgs/applications/virtualization/crun/default.nix
@@ -38,13 +38,13 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "crun";
-  version = "1.7";
+  version = "1.7.1";
 
   src = fetchFromGitHub {
     owner = "containers";
     repo = pname;
     rev = version;
-    sha256 = "sha256-Ly6GBR7nF7J5Dwe1jrQxR4XYsao7KxBAxGn8fsJwmMs=";
+    sha256 = "sha256-YCymMr2dxDACdBNylPXa0GKu+QRzKFi5QzlyacAyE5A=";
     fetchSubmodules = true;
   };
 
@@ -55,6 +55,8 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
   strictDeps = true;
 
+  NIX_LDFLAGS = "-lcriu";
+
   # we need this before autoreconfHook does its thing in order to initialize
   # config.h with the correct values
   postPatch = ''