Merge pull request #146700 from mrgutkun/fix-mime-strings

haskellPackages.mime-string: disable optimization for older compilers
This commit is contained in:
maralorn 2021-11-20 01:09:02 +01:00 committed by GitHub
commit f7f2ce6f9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

View File

@ -88,4 +88,6 @@ self: super: {
executableHaskellDepends = drv.executableToolDepends or [] ++ [ self.repline ];
}) super.hnix);
mime-string = disableOptimization super.mime-string;
}

View File

@ -106,4 +106,6 @@ self: super: {
# https://github.com/haskellari/time-compat/issues/23
time-compat = dontCheck super.time-compat;
mime-string = disableOptimization super.mime-string;
}

View File

@ -129,4 +129,6 @@ self: super: {
vector = dontCheck super.vector;
ghc-api-compat = doDistribute super.ghc-api-compat_8_6;
mime-string = disableOptimization super.mime-string;
}