mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-26 21:09:43 +01:00
Add workaround for smartmontools cross-compilation regression
This commit is contained in:
parent
7d2638c192
commit
497b7f7641
1 changed files with 8 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue