[Nix-dev] More news about the nix-env crash (was: SVN commit: nix - r31619 - nixpkgs/trunk/pkgs/tools/package-management/nix)

2012-01-19 Thread Peter Simons
Hi Eelco, nix-env 1.0pre31616 crashes on my system during nix-env -u \* --always when the following snipped is active in ~/.nixpkgs/config.nix: { packageOverrides = pkgs: rec { myLatex = pkgs.texLiveAggregationFun { paths = [ pkgs.texLive pkgs.texLiveExtra ]; };

Re: [Nix-dev] More news about the nix-env crash

2012-01-19 Thread Peter Simons
Duh, it's even simpler: { packageOverrides = pkgs: rec { myLatex = pkgs.texLiveAggregationFun { paths = [ pkgs.texLive pkgs.texLiveExtra ]; }; }; } This crashes while running nix-env -iA myLatex. ___ nix-dev

Re: [Nix-dev] More news about the nix-env crash

2012-01-19 Thread Eelco Dolstra
On 01/19/2012 09:26 PM, Peter Simons wrote: Duh, it's even simpler: { packageOverrides = pkgs: rec { myLatex = pkgs.texLiveAggregationFun { paths = [ pkgs.texLive pkgs.texLiveExtra ]; }; }; } Unfortunately I can't reproduce this.

Re: [Nix-dev] More news about the nix-env crash (was: SVN commit: nix - r31619 - nixpkgs/trunk/pkgs/tools/package-management/nix)

2012-01-19 Thread Mathijs Kwik
I'm getting segfaults too nix-env[20476]: segfault at 7fff36a64ff8 ip 7ff54a86f7a1 sp 7fff36a65000 error 6 in libexpr.so.0.0.0[7ff54a853000+64000] nix 31616 on x86_64 config.nix: https://gist.github.com/1642727 On Thu, Jan 19, 2012 at 9:23 PM, Peter Simons sim...@cryp.to wrote: Hi

Re: [Nix-dev] More news about the nix-env crash

2012-01-19 Thread Eelco Dolstra
On 01/19/2012 10:23 PM, Mathijs Kwik wrote: config.nix: https://gist.github.com/1642727 Thanks, this gives me a segfault as well. Will investigate. -- Eelco Dolstra | http://www.st.ewi.tudelft.nl/~dolstra/ ___ nix-dev mailing list

Re: [Nix-dev] More news about the nix-env crash

2012-01-19 Thread Eelco Dolstra
Hi, On 01/19/2012 10:27 PM, Eelco Dolstra wrote: On 01/19/2012 10:23 PM, Mathijs Kwik wrote: config.nix: https://gist.github.com/1642727 Thanks, this gives me a segfault as well. Will investigate. The cause seems to be in some builderDefs code, which is doing an equality check (uniqList)

Re: [Nix-dev] More news about the nix-env crash

2012-01-19 Thread Eelco Dolstra
Hi, On 01/19/2012 11:05 PM, Eelco Dolstra wrote: I'll try to add a workaround. Done (r31729). I'll update nixUnstable once Hydra has built the new Nix tarball. -- Eelco Dolstra | http://www.st.ewi.tudelft.nl/~dolstra/ ___ nix-dev mailing list

Re: [Nix-dev] More news about the nix-env crash

2012-01-19 Thread Michael Raskin
Hi, On 01/19/2012 10:27 PM, Eelco Dolstra wrote: On 01/19/2012 10:23 PM, Mathijs Kwik wrote: config.nix: https://gist.github.com/1642727 Thanks, this gives me a segfault as well. Will investigate. The cause seems to be in some builderDefs code, which is doing an equality check (uniqList)