From 010a346c67c02c1368059716a54c4dbfe9451aeb Mon Sep 17 00:00:00 2001 From: Karim Vergnes Date: Tue, 10 Mar 2026 08:36:55 +0100 Subject: [PATCH] feat: remove build-time patches from Nixpkgs Upstream Nixpkgs shadows Google's version of the default protobufs, which is no longer applicable given that they are copied into the repository, and causes builds to fail. Signed-off-by: Karim Vergnes --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 2333d5365..b64ecae79 100644 --- a/flake.nix +++ b/flake.nix @@ -71,7 +71,10 @@ devShells.default = devShell; # Build CRIU package as well - packages.default = pkgs.criu.overrideAttrs { src = ./.; }; + packages.default = pkgs.criu.overrideAttrs { + src = ./.; + postPatch = ""; + }; } ); }