Remove obsolete Haskell attribute name compatibility layer.

This commit is contained in:
Peter Simons
2015-05-04 12:27:03 +02:00
parent acb628a07f
commit 7299118724
3 changed files with 1 additions and 3850 deletions
File diff suppressed because it is too large Load Diff
+1 -3
View File
@@ -1,7 +1,6 @@
{ pkgs, stdenv, ghc
, packageSetConfig ? (self: super: {})
, overrides ? (self: super: {})
, provideOldAttributeNames ? false
}:
with ./lib.nix;
@@ -63,9 +62,8 @@ let
};
compatLayer = if provideOldAttributeNames then import ./compat-layer.nix else (self: super: {});
commonConfiguration = import ./configuration-common.nix { inherit pkgs; };
in
fix (extend (extend (extend (extend haskellPackages commonConfiguration) packageSetConfig) overrides) compatLayer)
fix (extend (extend (extend haskellPackages commonConfiguration) packageSetConfig) overrides)
-1
View File
@@ -3779,7 +3779,6 @@ let
haskellPackages = haskell.packages.ghc7101.override {
overrides = config.haskellPackageOverrides or (self: super: {});
provideOldAttributeNames = config.provideOldHaskellAttributeNames or false;
};
haxe = callPackage ../development/compilers/haxe { };