nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+3 -10
+3 -10
pkgs/development/haskell-modules/configuration-common.nix
··· 956 956 jsaddle = dontCheck super.jsaddle; 957 957 958 958 # https://github.com/gwern/mueval/issues/14 959 - mueval = super.mueval.override { 960 - hint = self.hint_0_4_3; 961 - }; 959 + mueval = super.mueval.override { hint = self.hint_0_4_3; }; 962 960 963 961 # Looks like Avahi provides the missing library 964 - dnssd = super.dnssd.override { 965 - dns_sd = pkgs.avahi.override { 966 - withLibdnssdCompat = true; 967 - }; 962 + dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; }; 968 963 969 964 # https://github.com/danidiaz/pipes-transduce/issues/2 970 - pipes-transduce = super.pipes-transduce.override { 971 - foldl = self.foldl_1_1_6; 972 - }; 965 + pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; }; 973 966 974 967 }