maude: remove clang version special casing

Previously, maude would force clang 7 to be used when compiling with a
stdenv that uses some version of clang. The only such case during native
compilation is on Darwin where maude is marked as broken currently.

Thus, I'm treating this as dead code and removing the logic, as it
hinders our ability to remove llvmPackages_7. This may regress some kind
of cross compilation use case, but this can be addressed at some other
point if anyone is relying on that at all.

+1 -3
+1 -3
pkgs/top-level/all-packages.nix
··· 17726 17727 ### End of CuboCore 17728 17729 - maude = callPackage ../development/interpreters/maude { 17730 - stdenv = if stdenv.cc.isClang then llvmPackages_7.stdenv else stdenv; 17731 - }; 17732 17733 me_cleaner = callPackage ../tools/misc/me_cleaner { }; 17734
··· 17726 17727 ### End of CuboCore 17728 17729 + maude = callPackage ../development/interpreters/maude { }; 17730 17731 me_cleaner = callPackage ../tools/misc/me_cleaner { }; 17732