Re: [Nix-dev] Staging merge will soon happen

2015-05-11 Thread Vladimír Čunát
On 05/10/2015 11:40 PM, Luca Bruno wrote: It's ok for me except that then people won't have ready binaries for master, which is what staging was meant for. At this moment I see we have binaries only for ~10k packages on master and ~9k packages on staging, so the difference isn't that bad.

Re: [Nix-dev] Possible bug in ssh key module

2015-05-11 Thread Bas van Dijk
On 11 May 2015 at 04:45, Anand Patil anand.prabhakar.pa...@gmail.com wrote: Hi everyone, Just wanted to point out a small possible bug in NixOS version 15.05pre61966.75ebc3c (Dingo). I noticed that when I add an authorizedKeys option to my user like so: openssh.authorizedKeys.keys = [

Re: [Nix-dev] Staging merge will soon happen

2015-05-11 Thread Domen Kožar
Staging merged into master with --no-ff flag. I'll stop the current staging jobset and start nixos-combined jobset. On Mon, May 11, 2015 at 9:13 AM, Vladimír Čunát vcu...@gmail.com wrote: On 05/10/2015 11:40 PM, Luca Bruno wrote: It's ok for me except that then people won't have ready

[Nix-dev] sbcl image executables and patch-elf

2015-05-11 Thread Eike
Hi there, I'm making a program in common lisp using sbcl. I then create a executable image which results in quite a big file since the whole lisp is packaged up. When I use nix to build this app, the file that ends up in nix-store is tiny and not working. It seems to me that the patch-elf

Re: [Nix-dev] Update stable?

2015-05-11 Thread stewart mackenzie
Thanks Domen for your time, much appreciated! ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] sbcl image executables and patch-elf

2015-05-11 Thread Tomas Hlavaty
Hi Eike, I'm making a program in common lisp using sbcl. I then create a executable image which results in quite a big file since the whole lisp is packaged up. When I use nix to build this app, the file that ends up in nix-store is tiny and not working. It seems to me that the patch-elf

Re: [Nix-dev] Update stable?

2015-05-11 Thread Domen Kožar
release-14.12 was updated 3 days ago: http://howoldis.herokuapp.com/ I bumped the aborted test in latest kernel update commits, so those should propagate soonish. PS: I've been seeing quite some aborted builds lately in all jobsets. On Mon, May 11, 2015 at 12:44 PM, stewart mackenzie

[Nix-dev] Update stable?

2015-05-11 Thread stewart mackenzie
When was the last time stable was updated? I think things might be getting a tad stale in there. /sjm ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] *buildInputs

2015-05-11 Thread Domen Kožar
See https://github.com/NixOS/nixpkgs/issues/4855 On Mon, May 11, 2015 at 1:51 PM, Arseniy Seroka ars.ser...@gmail.com wrote: What's the difference between nativeBuildInputs, buildInputs and propagatedBuildInputs? -- Sincerely, Arseniy Seroka

Re: [Nix-dev] A Journey into our brand-new Haskell infrastructure: Part III

2015-05-11 Thread Miguel Negrão
Hi Peter Simons simons at cryp.to writes: just a quick update for your information: we now have fully automatic updates of hackages-packages.nix. The process is driven by the update-nixpkgs.sh script [1], which is part of the cabal2nix Git repository [2]. Basically, that script re-generates

Re: [Nix-dev] haskell dev environment, ghc non-determinism and binary cache interaction

2015-05-11 Thread Peter Simons
Hi Miguel, package binary-0.7.4.0 is broken due to missing package array-0.5.0.0-470385a50d2b78598af85cfe9d988e1b, base-4.7.0.2-bfd89587617e381ae01b8dd7b6c7f1c1, bytestring-0.10.4.0-d6f1d17d717e8652498cab8269a0acd5, ... these errors occur sometimes, when Haskell libraries from

[Nix-dev] problems with haskell-ng/cabal-install

2015-05-11 Thread Tobias Pflug
Hi, I've been facing some problems with haskell-ng and cabal-install. I would like to use ghc 7.8.4 and cabal-install 1.20.x. I try to install cabal-install as follows: $ nix-env -f ~/nixpkgs -i -A haskell-ng.packages.ghc784.cabal-install The build fails because of missing dependencies : [1

Re: [Nix-dev] *buildInputs

2015-05-11 Thread Arseniy Seroka
Thank you! 2015-05-11 15:02 GMT+03:00 Domen Kožar do...@dev.si: See https://github.com/NixOS/nixpkgs/issues/4855 On Mon, May 11, 2015 at 1:51 PM, Arseniy Seroka ars.ser...@gmail.com wrote: What's the difference between nativeBuildInputs, buildInputs and propagatedBuildInputs? --

[Nix-dev] *buildInputs

2015-05-11 Thread Arseniy Seroka
What's the difference between nativeBuildInputs, buildInputs and propagatedBuildInputs? -- Sincerely, Arseniy Seroka ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] A Journey into our brand-new Haskell infrastructure: Part III

2015-05-11 Thread Peter Simons
Hi Miguel, How does one add older versions of a package to hackage-packages.nix? the list of extra packages is maintained in [1]. If you submit a patch or pull request, then the additional version will show up in hackage-packages.nix. Best regards, Peter [1]

[Nix-dev] Ctrl-pnfb

2015-05-11 Thread stewart mackenzie
So after using a mac at work I miss one thing i'd like to do on nix. That is everywhere (input boxes, browsers, tex editors, IDEs) I can navigate my cursor using: ctrl-f :forward ctrl-b :backward ctrl-n :next line ctrl-p : previous line is this possible within nixos? If so, how so? /sjm

Re: [Nix-dev] sbcl image executables corrupted

2015-05-11 Thread Eike
I just tried putting the executable file inside a different directory than 'bin' and this is working. It is not stripped/whatever -- only when installed in the bin/ directory. Sorry about the confusion with patchelf, I shouldn't put a wild guess in the title. It probably hasn't anything to do

Re: [Nix-dev] sbcl image executables and patch-elf

2015-05-11 Thread Eike
Hi Thomas, thanks for your reply; somehow I missed your response as yet. I just found out that this is the strip utility from binutils and I'm wondering how it can do such a harm… Thanks again Eike Tomas Hlavaty tomas.hlav...@knowledgetools.de writes: Hi Eike, I'm making a program in

Re: [Nix-dev] i686 Builds?

2015-05-11 Thread Ryan Trinkle
I encountered an i686 user just the other day! I don't use it personally, but having solid support in Nix was fantastic, especially because older, 32-bit machines tend to be slower, which makes Nix's binary caching functionality even more important. On Mon, May 11, 2015 at 6:36 PM, Shea Levy

Re: [Nix-dev] i686 Builds?

2015-05-11 Thread Daniel Peebles
Is there a way to get stats on which binary cache hashes are being retrieved? Would be interesting to see what percentage is i686 and scale build shares accordingly. On Mon, May 11, 2015 at 6:36 PM, Shea Levy s...@shealevy.com wrote: Hi all, Do we still have users running 32-bit machines? It

Re: [Nix-dev] i686 Builds?

2015-05-11 Thread William Kennington
Maybe it would make more sense to only build the i686 builds if our tested set of x86_64 binaries build correctly. We would still release with both but it would cut down on a lot of redundant failures. On Mon, May 11, 2015 at 3:39 PM Ryan Trinkle ryan.trin...@gmail.com wrote: I encountered an

Re: [Nix-dev] i686 Builds?

2015-05-11 Thread Ambrus Kaposi
I'm relying on these builds on my home laptop. On Mon, May 11, 2015 at 11:36 PM, Shea Levy s...@shealevy.com wrote: Hi all, Do we still have users running 32-bit machines? It would reduce the load on hydra significantly if we could drop support for i686, though of course if people are still

[Nix-dev] i686 Builds?

2015-05-11 Thread Shea Levy
Hi all, Do we still have users running 32-bit machines? It would reduce the load on hydra significantly if we could drop support for i686, though of course if people are still relying on it we shouldn't make the change yet. ~Shea ___ nix-dev mailing

[Nix-dev] Force nix

2015-05-11 Thread Arseniy Seroka
Is there a way to force nix re-download cache (or sources) of derivation and it's dependencies? -- Sincerely, Arseniy Seroka ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] Possible breaking changes from staging

2015-05-11 Thread stewart mackenzie
Well done Luca! Great work! ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] Possible breaking changes from staging

2015-05-11 Thread Luca Bruno
So guys all the stuff quoted below happened, it's all in master. Hopefully NM 1.0 won't break your desktop too much. In case it does, please report an issue to nixpkgs. Thanks all for the hard work. Best regards, On Wed, Apr 22, 2015 at 11:05 AM, Luca Bruno lethalma...@gmail.com wrote: In this

Re: [Nix-dev] Possible bug in ssh key module

2015-05-11 Thread Anand Patil
Hi Bas, yep, it was just that. Sorry for the false alarm. Thanks, Anand On Mon, May 11, 2015 at 12:52 AM, Bas van Dijk v.dijk@gmail.com wrote: On 11 May 2015 at 04:45, Anand Patil anand.prabhakar.pa...@gmail.com wrote: Hi everyone, Just wanted to point out a small possible bug in NixOS