mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
Merge pull request #226728 from MaxHearnden/wiringPi
haskellPackages.wiringPi: Add wiringpi as a dependency on aarch
This commit is contained in:
commit
13028e309e
@ -38,6 +38,11 @@ self: super: {
|
|||||||
happy = dontCheck super.happy;
|
happy = dontCheck super.happy;
|
||||||
happy_1_19_12 = doDistribute (dontCheck super.happy_1_19_12);
|
happy_1_19_12 = doDistribute (dontCheck super.happy_1_19_12);
|
||||||
|
|
||||||
|
# add arm specific library
|
||||||
|
wiringPi = overrideCabal ({librarySystemDepends ? [], ...}: {
|
||||||
|
librarySystemDepends = librarySystemDepends ++ [pkgs.wiringpi];
|
||||||
|
}) super.wiringPi;
|
||||||
|
|
||||||
} // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch64 {
|
} // lib.optionalAttrs pkgs.stdenv.hostPlatform.isAarch64 {
|
||||||
# AARCH64-SPECIFIC OVERRIDES
|
# AARCH64-SPECIFIC OVERRIDES
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user