From c0a5872c2c771f9e88ca198ea625c1f1be840da2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 7 Apr 2016 07:58:32 +0200 Subject: [PATCH] configuration-common.nix: fix syntax error (and cosmetic) --- .../haskell-modules/configuration-common.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f40b1281e6b..1833ce3ffce 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -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; }; }