Skip to content

Commit

Permalink
temp: fix 7zip compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Nov 3, 2024
1 parent 1571fa6 commit bc37883
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,13 @@ let
};
in
import nixpkgs {
overlays = [ overlay ];
overlays = [
overlay
(final: prev: {
_7zz = prev._7zz.override { useUasm = (prev.stdenv.hostPlatform.isLinux && prev.stdenv.hostPlatform.isx86); };
})
];
# broken is needed for hindent to build
config = { allowBroken = true; };
config = { allowBroken = true; allowUnfree = true; };
inherit system;
}

0 comments on commit bc37883

Please sign in to comment.