Unverified Commit 17b3ef77 authored by Sascha Grunert's avatar Sascha Grunert
Browse files

cri-o: 1.31.3 -> 1.32.0

parent 3a35781f
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -12,17 +12,18 @@
  lvm2,
  pkg-config,
  nixosTests,
  go-md2man,
}:

buildGoModule rec {
  pname = "cri-o";
  version = "1.31.3";
  version = "1.32.0";

  src = fetchFromGitHub {
    owner = "cri-o";
    repo = "cri-o";
    rev = "v${version}";
    hash = "sha256-uoB5v+dl3895sW597f/Y49E2BJvy89871xu/rqWd7kw=";
    hash = "sha256-bjZjmgIYFroyUdBeUbrRz7dD0yQOqc9TDsGxvle1PnE=";
  };
  vendorHash = null;

@@ -34,6 +35,7 @@ buildGoModule rec {
  ];
  nativeBuildInputs = [
    installShellFiles
    go-md2man
    pkg-config
  ];

@@ -54,6 +56,7 @@ buildGoModule rec {
  BUILDTAGS = "apparmor seccomp selinux containers_image_openpgp containers_image_ostree_stub";
  buildPhase = ''
    runHook preBuild
    sed -i 's;\thack/;\tbash ./hack/;g' Makefile
    make binaries docs BUILDTAGS="$BUILDTAGS"
    runHook postBuild
  '';