3
0
Fork 0
forked from mirrors/nixpkgs

haskell-semigroups: fix build with older compilers

This commit is contained in:
Peter Simons 2016-06-05 17:57:23 +02:00
parent a01fab64e2
commit 0cc1b3744e
2 changed files with 4 additions and 4 deletions

View file

@ -96,7 +96,7 @@ self: super: {
# Needs void on pre 7.10.x compilers.
conduit = addBuildDepend super.conduit self.void;
# Needs nats on pre 7.10.x compilers.
semigroups = addBuildDepend super.semigroups self.nats;
# Needs additional inputs on pre 7.10.x compilers.
semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers transformers]);
}

View file

@ -139,7 +139,7 @@ self: super: {
conduit = addBuildDepend super.conduit self.void;
conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void;
# Needs nats on pre 7.10.x compilers.
semigroups = addBuildDepend super.semigroups self.nats;
# Needs additional inputs on pre 7.10.x compilers.
semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers]);
}