Skip to content

Commit

Permalink
fix installer cross compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
tpwrules committed Dec 20, 2023
1 parent 5002211 commit 275509b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions iso-configuration/installer-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,14 @@
util-linux = prev.util-linux.override {
translateManpages = false;
};

# documentation cross-compilation is currently broken
# https://github.com/NixOS/nixpkgs/pull/275078
btrfs-progs = prev.btrfs-progs.overrideAttrs (old: {
configureFlags = (old.configureFlags or []) ++ [
"--disable-documentation"
];
});
})
];

Expand Down

0 comments on commit 275509b

Please sign in to comment.