configuration-common.nix: fix syntax error (and cosmetic)
This commit is contained in:
parent
07f26f3df1
commit
c0a5872c2c
|
@ -956,19 +956,12 @@ self: super: {
|
||||||
jsaddle = dontCheck super.jsaddle;
|
jsaddle = dontCheck super.jsaddle;
|
||||||
|
|
||||||
# https://github.com/gwern/mueval/issues/14
|
# https://github.com/gwern/mueval/issues/14
|
||||||
mueval = super.mueval.override {
|
mueval = super.mueval.override { hint = self.hint_0_4_3; };
|
||||||
hint = self.hint_0_4_3;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Looks like Avahi provides the missing library
|
# Looks like Avahi provides the missing library
|
||||||
dnssd = super.dnssd.override {
|
dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; };
|
||||||
dns_sd = pkgs.avahi.override {
|
|
||||||
withLibdnssdCompat = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# https://github.com/danidiaz/pipes-transduce/issues/2
|
# https://github.com/danidiaz/pipes-transduce/issues/2
|
||||||
pipes-transduce = super.pipes-transduce.override {
|
pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; };
|
||||||
foldl = self.foldl_1_1_6;
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue