summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/crun
diff options
context:
space:
mode:
authorSascha Grunert <sgrunert@redhat.com>2022-07-20 16:57:57 +0200
committerSascha Grunert <sgrunert@redhat.com>2022-07-20 16:57:57 +0200
commit41093cc18c09f03e4b9cef0ff918846b1e8e86de (patch)
tree693a47223ac5b1397043e4166e2126685dd8aa90 /pkgs/applications/virtualization/crun
parentb9da0d3852fc0069cb555f8679901ba075ee3f90 (diff)
crun: 1.4.5 -> 1.5
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
Diffstat (limited to 'pkgs/applications/virtualization/crun')
-rw-r--r--pkgs/applications/virtualization/crun/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/applications/virtualization/crun/default.nix b/pkgs/applications/virtualization/crun/default.nix
index c0c53b9c6ae1..f224e03de04f 100644
--- a/pkgs/applications/virtualization/crun/default.nix
+++ b/pkgs/applications/virtualization/crun/default.nix
@@ -39,25 +39,16 @@ let
in
stdenv.mkDerivation rec {
pname = "crun";
- version = "1.4.5";
+ version = "1.5";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = version;
- sha256 = "sha256-YXbyGUY/E8odjljDok+yYyU8yZSyUFc22zumrUuuXXQ=";
+ sha256 = "sha256-eirCENgt25VRPub7c9cxYQ1uFxYbzm75cJ1v4r6O/+k=";
fetchSubmodules = true;
};
- patches = [
- # Should dropped in next release after 1.4.5
- (fetchpatch {
- name = "usrbin-paths.patch";
- url = "https://github.com/containers/crun/commit/dd29f7f7f713c49784ac30f7cdca33b2ef94d5b8.patch";
- sha256 = "sha256-kHHix8CUL+c8HbOe5qx4PeF1P19113U4bRZyleMUjqk=";
- })
- ];
-
nativeBuildInputs = [ autoreconfHook go-md2man pkg-config python3 ];
buildInputs = [ libcap libseccomp systemd yajl ]