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 <me@thesola.io>
This commit is contained in:
Karim Vergnes 2026-03-10 08:36:55 +01:00 committed by Radostin Stoyanov
parent bbcadd85fd
commit 010a346c67

View file

@ -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 = "";
};
}
);
}