Skip to content

Commit

Permalink
fix libuv and elfutils
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverca22 committed Oct 24, 2023
1 parent c3a5cd0 commit a582c87
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions rpi_image.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,15 @@
nixpkgs.config.packageOverrides = pkgs: {
linux_rpi = pkgs.callPackage ./linux-rpi.nix {};
};
nixpkgs.overlays = [
(self: super: {
libuv = super.libuv.overrideAttrs (old: {
doCheck = false;
});
elfutils = super.elfutils.overrideAttrs (old: {
doCheck = false;
doInstallCheck = false;
});
})
];
}

0 comments on commit a582c87

Please sign in to comment.