Add workaround for smartmontools cross-compilation regression

This commit is contained in:
Samuel Dionne-Riel 2020-09-13 23:43:36 -04:00
parent 7d2638c192
commit 497b7f7641
1 changed files with 8 additions and 2 deletions

View File

@ -8,8 +8,14 @@
# Does not cross-compile...
alsa-firmware = pkgs.runCommandNoCC "neutered-firmware" {} "mkdir -p $out";
# A "regression" in nixpkgs, where python3 pycryptodome does not cross-compile.
crda = pkgs.runCommandNoCC "neutered-firmware" {} "mkdir -p $out";
# A "regression" in nixpkgs, where python3 pycryptodome does not cross-compile.
crda = pkgs.runCommandNoCC "neutered-firmware" {} "mkdir -p $out";
# Regression caused by including a new package in the closure
# Added in f1922cdbdc608b1f1f85a1d80310b54e89d0e9f3
smartmontools = super.smartmontools.overrideAttrs(old: {
configureFlags = [];
});
})
(final: super: