configuration-common.nix: fix syntax error (and cosmetic)

This commit is contained in:
Peter Simons 2016-04-07 07:58:32 +02:00
parent 07f26f3df1
commit c0a5872c2c

View File

@ -956,19 +956,12 @@ self: super: {
jsaddle = dontCheck super.jsaddle;
# https://github.com/gwern/mueval/issues/14
mueval = super.mueval.override {
hint = self.hint_0_4_3;
};
mueval = super.mueval.override { hint = self.hint_0_4_3; };
# Looks like Avahi provides the missing library
dnssd = super.dnssd.override {
dns_sd = pkgs.avahi.override {
withLibdnssdCompat = true;
};
dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; };
# https://github.com/danidiaz/pipes-transduce/issues/2
pipes-transduce = super.pipes-transduce.override {
foldl = self.foldl_1_1_6;
};
pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; };
}