Merge pull request #226728 from MaxHearnden/wiringPi

haskellPackages.wiringPi: Add wiringpi as a dependency on aarch
This commit is contained in:
Dennis Gosnell 2023-04-19 15:53:46 +09:00 committed by GitHub
commit 13028e309e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,11 @@ self: super: {
happy = dontCheck super.happy;
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 {
# AARCH64-SPECIFIC OVERRIDES