3
0
Fork 0
forked from mirrors/nixpkgs

haskell-esqueleto: remove broken overrides

These overrides didn't work, because they created a mixture of different
versions of 'persistent' in the build tree. Furthermore, we cannot pin
specific versions like that in configuration-common.nix because this
breaks builds in other package sets, i.e. the LTS variants.
This commit is contained in:
Peter Simons 2016-06-05 17:48:35 +02:00
parent 513d648f40
commit c7639f4e56

View file

@ -1013,12 +1013,4 @@ self: super: {
cairo = addBuildTool super.cairo self.gtk2hs-buildtools;
pango = addBuildTool super.pango self.gtk2hs-buildtools;
# esqueleto requires an older version of the persistent library, and
# corresponding versions of -template and -sqlite for for its test
# suite.
esqueleto = super.esqueleto.overrideScope (self: super: {
persistent-template = super.persistent-template_2_1_8_1;
persistent-sqlite = super.persistent-sqlite_2_2_1;
persistent = super.persistent_2_2_4_1;
});
}