mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
happy: fix build with GHC 7.2.x
This commit is contained in:
parent
4ab133a2c4
commit
0b05129b88
@ -55,6 +55,6 @@ self: super: {
|
||||
containers_0_4_2_1 = doJailbreak super.containers_0_4_2_1;
|
||||
|
||||
# These packages need more recent versions of core libraries to compile.
|
||||
happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1 self.containers_0_4_2_1];
|
||||
happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
|
||||
|
||||
}
|
||||
|
@ -51,7 +51,10 @@ self: super: {
|
||||
# Haddock chokes on the prologue from the cabal file.
|
||||
ChasingBottoms = dontHaddock super.ChasingBottoms;
|
||||
|
||||
# The old containers version won't compile against newer versions of deepseq.
|
||||
containers_0_4_2_1 = super.containers_0_4_2_1.override { deepseq = self.deepseq_1_3_0_1; };
|
||||
|
||||
# These packages need more recent versions of core libraries to compile.
|
||||
happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1 self.containers_0_4_2_1];
|
||||
happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user