[Nix-dev] haskellPackages_ghc763_profiling

2014-02-06 Thread Mathijs Kwik
Hi all,

Before nixos, I remember that enabling profiling in .cabal/config lead
to double compilation times, because things got compiled twice. Once
normal/optimized, and once with profiling info.

With nixos, I wired haskellPackages to haskellPackages_ghc763_profiling
through packageOverrides, but I don't see things get compiled twice.

Did something change regarding this? Or have I now ended up with only
profiling versions (potentially slower) of all haskell packages?

Thanks,
Mathijs
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-dev] Bluetooth support - nixos

2014-02-06 Thread Marc Weber
I'd like to connect my smartphone with internet via laptop
hostapd fails:

  Feb 06 14:50:17 nixos hostapd[9780]: wlp5s0: STA 00:23:76:de:48:8e IEEE 
802.11: authenticated
  Feb 06 14:50:17 nixos hostapd[9780]: wlp5s0: STA 00:23:76:de:48:8e IEEE 
802.11: associated (aid 1)
  Feb 06 14:50:17 nixos hostapd[9780]: wlp5s0: STA 00:23:76:de:48:8e RADIUS: 
starting accounting session 52F3930...01
  Feb 06 14:50:17 nixos hostapd[9780]: wlp5s0: STA 00:23:76:de:48:8e IEEE 
802.11: disassociated
  Feb 06 14:50:18 nixos hostapd[9780]: wlp5s0: STA 00:23:76:de:48:8e IEEE 
802.11: deauthenticated due to inactiv...EMOVE)
(maybe driver or hardware issue?)

Has anybody tried creating a bluetooth network successfully ?

blueman: (gtk frontend), but its broken since 2 obex versions [1]

And there is bluedevil (requires kde).

Has anybody some experience and can hint me what to try first?

Marc Weber

[1] I guess it would be easy to fix
obex readme contains this hint:
  Upgrading to version 1.6
  
  The function OBEX_FindInterfaces is replaced by the functions
  OBEX_EnumerateInterfaces() and OBEX_GetInterfaceByIndex().
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] haskellPackages_ghc763_profiling

2014-02-06 Thread Peter Simons
Hi Mathijs,

every library module is compiled twice in the profiling variant of the Haskell
package set. Check out [1] as an example: the module Data.Text.Fusion.Internal
is compiled once to generate an *.o file and once to generate an *.p_o file.

Take care,
Peter


[1] http://hydra.nixos.org/build/8636064/log/raw

___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev