haskellPackages: remove versioned references to hspec-meta-2.10.5

This is the default version now, so the versioned attribute no longer exists.
This commit is contained in:
sternenseemann 2023-07-01 22:37:26 +02:00
parent f50da30a5d
commit e97404a52f

View file

@ -1634,13 +1634,10 @@ self: super: {
hspec-discover = self.hspec-discover_2_11_1;
hspec-core = self.hspec-core_2_11_1;
});
hspec-discover_2_11_1 = doDistribute (super.hspec-discover_2_11_1.override {
hspec-meta = self.hspec-meta_2_10_5;
});
hspec-discover_2_11_1 = doDistribute super.hspec-discover_2_11_1;
# Need to disable tests to prevent an infinite recursion if hspec-core_2_11_1
# is overlayed to hspec-core.
hspec-core_2_11_1 = doDistribute (dontCheck (super.hspec-core_2_11_1.override {
hspec-meta = self.hspec-meta_2_10_5;
hspec-expectations = self.hspec-expectations_0_8_3;
}));