tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
haskell-vector: mark broken on GHC 7.6.x and earlier
Peter Simons
8 years ago
a3326e85
b5d48613
+2
2 changed files
expand all
collapse all
unified
split
pkgs
development
haskell-modules
configuration-ghc-7.4.x.nix
configuration-ghc-7.6.x.nix
+1
pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
···
102
102
QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
103
103
optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
104
104
text = addBuildDepend super.text self.bytestring-builder;
105
105
+
vector = addBuildDepend super.vector self.semigroups;
105
106
106
107
# Newer versions don't compile any longer.
107
108
network_2_6_3_1 = dontCheck super.network_2_6_3_1;
+1
pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
···
101
101
QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
102
102
void = addBuildDepends super.void (with self; [hashable semigroups]);
103
103
optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
104
104
+
vector = addBuildDepend super.vector self.semigroups;
104
105
105
106
# Need a newer version of Cabal to interpret their build instructions.
106
107
cmdargs = addSetupDepend super.cmdargs self.Cabal_1_24_2_0;