summary refs log tree commit diff
path: root/pkgs/applications/virtualization/crun/default.nix
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-04-03 05:44:57 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-04-06 18:15:09 +1000
commit286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b (patch)
treea0396fe3b18063573646168293481a91dcb64b40 /pkgs/applications/virtualization/crun/default.nix
parent659063688507c8f41e67d2b8ac1bcc69d71eaeb0 (diff)
downloadnixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.tar
nixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.tar.gz
nixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.tar.bz2
nixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.tar.lz
nixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.tar.xz
nixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.tar.zst
nixpkgs-286a6ca9ab876dc29b13ae40e53cf1d2658b2c0b.zip
crun: 0.18 -> 0.19
https://github.com/containers/crun/releases/tag/0.19
Diffstat (limited to 'pkgs/applications/virtualization/crun/default.nix')
-rw-r--r--pkgs/applications/virtualization/crun/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/applications/virtualization/crun/default.nix b/pkgs/applications/virtualization/crun/default.nix
index 15ca7c9667f..1aee54c8af8 100644
--- a/pkgs/applications/virtualization/crun/default.nix
+++ b/pkgs/applications/virtualization/crun/default.nix
@@ -12,7 +12,6 @@
 , nixosTests
 , criu
 , system
-, fetchpatch
 }:
 
 let
@@ -29,6 +28,7 @@ let
     "test_pid_file.py"
     "test_preserve_fds.py"
     "test_resources"
+    "test_seccomp"
     "test_start.py"
     "test_uid_gid.py"
     "test_update.py"
@@ -38,24 +38,16 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "crun";
-  version = "0.18";
+  version = "0.19";
 
   src = fetchFromGitHub {
     owner = "containers";
     repo = pname;
     rev = version;
-    sha256 = "sha256-VjMpfj2qUQdhqdnLpZsYigfo2sM7gNl0GrE4nitp13g=";
+    sha256 = "sha256-G9asWedX03cP5Qg5HIzlSIwwqNL16kiyWairk+6Kabw=";
     fetchSubmodules = true;
   };
 
-  patches = [
-    # For 0.18 some tests switched to static builds, this was reverted after 0.18 was released
-    (fetchpatch {
-      url = "https://github.com/containers/crun/commit/d26579bfe56aa36dd522745d47a661ce8c70d4e7.patch";
-      sha256 = "1xmc0wj0j2xcg0915vxn0pplc4s94rpmw0s5g8cyf8dshfl283f9";
-    })
-  ];
-
   nativeBuildInputs = [ autoreconfHook go-md2man pkg-config python3 ];
 
   buildInputs = [ libcap libseccomp systemd yajl ]