Re: [Nix-dev] mention-bot for nixpkgs?

2015-11-25 Thread zimbatm
Wasn't the plan to upload the binaries automatically to resolve the disk space issue on the workers ? Or is this another cache. On Wed, 25 Nov 2015 at 09:24 Vladimír Čunát <vcu...@gmail.com> wrote: > On 11/24/2015 10:48 PM, zimbatm wrote: > > Master would already have bin

Re: [Nix-dev] What does this output in my VM test mean?

2015-11-24 Thread zimbatm
It seems like the wireless card configuration is changed by both the host and the guest to make sure they obey to the local regulation, and they both have different regions. https://wireless.wiki.kernel.org/en/developers/regulatory/crda Can you run iw reg get on both the guest and the host to

Re: [Nix-dev] Why does my system rebuild rustc and cargo?

2015-11-24 Thread zimbatm
asswort für m: > ok > find: "/nix/var/nix/profiles/per-container": Permission denied > ok > > On 24-11-2015 16:36:13, zimbatm wrote: > > Maybe one of the sqlite3 files is corrupted. What does this give you ? > > ``` > > find /nix/var

Re: [Nix-dev] Real documentation, aka "Let's kill the wiki"

2015-11-24 Thread zimbatm
Please no XML as the source, it adds way too much emphasis on the structure instead of the content. Asciidoc is pretty good. It can be configured quite close to markdown and supports all the

Re: [Nix-dev] mention-bot for nixpkgs?

2015-11-24 Thread zimbatm
The Homu model looks quite interesting. If homu would trigger a hydra build and only push to master after the build succeeds, I believe that it would simplify a lot of things nicely. Master would already have binary caches from the builds so we could use it as the unstable channel. This is quite

Re: [Nix-dev] Why does my system rebuild rustc and cargo?

2015-11-24 Thread zimbatm
Maybe one of the sqlite3 files is corrupted. What does this give you ? ``` find /nix/var -name "*.sqlite" -exec sh -c "echo .exit | sqlite3 -cmd 'PRAGMA integrity_check;' {}" \; ``` On Sun, 22 Nov 2015 at 16:30 Matthias Beyer wrote: > On 22-11-2015 12:18:30, Matthias

Re: [Nix-dev] Why does my system rebuild rustc and cargo?

2015-11-21 Thread zimbatm
Can you give the output ? It would be interesting to see the list of derivatives that it's going to build. The top-level one should be the culprit. On Sat, 21 Nov 2015 at 15:30 Matthias Beyer wrote: > After switching from rustPlatform.{rustc, cargo} to >

Re: [Nix-dev] Locale issues with Nix shell (and GHC) on OSX

2015-11-19 Thread zimbatm
Sorry, I don't know how to help you further. I also don't know why glibcLocales should be linux-only. On Thu, 19 Nov 2015 at 12:30 Yves Parès <yves.pa...@gmail.com> wrote: > I actually need Unicode, this is why setting LANG=C is a problem. > > 2015-11-19 13:27 GMT+01:0

Re: [Nix-dev] Publish All of Hackage

2015-11-19 Thread zimbatm
Are haskell libraries useful other than at compile time ? Nix doesn't do dependency resolution in regards to version matching and I don't think that we will ever have a unified hackage where all the latest versions work together. Tools like cabal2nix seem essential in that regard. If we where to

Re: [Nix-dev] Locale issues with Nix shell (and GHC) on OSX

2015-11-19 Thread zimbatm
Did you check your environment variables ? I suppose that LANG and friends are set to en_US.UTF-8. You could try to add the locales packages to your shell.nix or change LANG, LC_ALL to "C". If you don't need Unicode that might be easier. On Thu, 19 Nov 2015 10:44 Yves Parès

Re: [Nix-dev] Staging merge

2015-11-09 Thread zimbatm
Is there a document that explains the rationale behind keeping a separate staging area ? I don't understand nixos fully and it looks like it would be more work than keeping the unstable channel to master. On Sun, 8 Nov 2015 19:49 Anderson Torres wrote: > 2015-11-08

Re: [Nix-dev] $3.40/month ARM server w/ 2GB RAM, 50GB disk

2015-11-06 Thread zimbatm
I created an account but they are out of stock and don't let me see the admin. I wanted to see if they let you boot from an ISO/iPXE like on vultr, that makes the install considerably easier. On Fri, 6 Nov 2015 at 08:17 Lluís Batlle i Rossell wrote: > Thank you! Sounds like a

Re: [Nix-dev] Remote Installation

2015-11-06 Thread zimbatm
I would also add a little script that pings back to a known location and reports the local IP. Then just tail the logs of that known location's httpd server :) On Fri, 6 Nov 2015 at 04:51 Roger Qiu wrote: > Try using Packer. You can take the liveCD ISO, and repack it

Re: [Nix-dev] [ANN] Vagrant boxes for 15.09

2015-10-19 Thread zimbatm
to name the new, “real” thing. > > In short: > > * Gem “vagrant-nixos” — bad > * Gem “vagrant-nixos-plugin” — good > > I hope to hear back from the original author at some point to help the > community clean this up. > > Christian > > On 19 Oct 2015, at 01:02,

Re: [Nix-dev] vagrant-nixos-plugin

2015-10-18 Thread zimbatm
> Hi, > > even though the "vagrant-nixos” plugin was featured on the Twitter feed > recently - the original author seems to be MIA and Zimbatm and I want to > move forward. We’ve been trying to get in contact for a couple of months > now and we thought it’s time to fork and

Re: [Nix-dev] Building portable linux binaries on NixOS

2015-10-07 Thread zimbatm
@Luca: try this: ``` $ nix-env -i direnv [snip] $ ldd `which direnv` not a dynamic executable ``` The difference is that direnv is pure go and thus isn't compiled by gccgo. @Kamil: if it's possible to remove all the C dependencies in your go program I would recommend it. It just makes

Re: [Nix-dev] Feature request: replace the Darwin stdenv with the pure Darwin stdenv

2015-10-02 Thread zimbatm
Looking forward to see the merge happening. Right now Darwin is totally unusable for me because of the OSX upgrade. On Fri, 2 Oct 2015 at 16:52 Eric Seidel wrote: > I'm tentatively in favor of making the switch too. I'm going to test my > environment against pure-darwin this

Re: [Nix-dev] Providing Debian, Arch etc. packages counterproductive?

2015-09-22 Thread zimbatm
What does the deb exactly contain and take care of ? I'm not sure of the boundary between the system package manager and nix. For example once nix is installed I would expect the `nix` binary to be managed by it, but if it's provided by the system package as well then it's possible to have two

Re: [Nix-dev] ghc --enable-multi-instance, the end of cabal hell ?

2015-09-19 Thread zimbatm
In my understanding nix already separates different versions of a package into different derivations. Even if cabal supports having multiple versions of a package, at compile time it still has to resolve to a single version. On Sat, 19 Sep 2015 12:31 Miguel Negrão <

Re: [Nix-dev] Next release updates

2015-09-03 Thread zimbatm
Amazing. What about OSX and other targets ? It would be great if the findutils revert was part of the release. On Wed, 2 Sep 2015 19:43 Domen Kožar wrote: > A week is around, everyone is doing a great job fixing bugs and build > failures. We have around 50 build failures more and

Re: [Nix-dev] Can developers snail mail me the live CD?

2015-08-25 Thread zimbatm
Where about are you geographically speaking ? The CD still requires a lot of bandwidth during installation unfortunately. Is the limit on the phone monthly ? On Tue, 25 Aug 2015 03:54 Brian Jones asu...@gmail.com wrote: I was wondering if it is possible to have the 64-bit graphical live cd

Re: [Nix-dev] allowSubstitutes option

2015-08-01 Thread zimbatm
It seem to be fairly new and might not be documented yet. See https://github.com/NixOS/nix/commit/b64988bb3585478676585a0f0aecbcf4e11d44 On Sat, 1 Aug 2015 at 23:40 Nikolay Amiantov a...@fmap.me wrote: Ouch, obviously I meant it should be the opposite of. On 08/02/2015 01:38 AM, Nikolay

Re: [Nix-dev] What is a default.upstream file?

2015-07-28 Thread zimbatm
I think it's used by this tooling here: https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/upstream-updater/update-walker.sh#L100 It might also be related to the updateWalker meta attribute mentioned here: http://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes On Tue, 28 Jul

Re: [Nix-dev] [ANN] Vagrant boxes for 14.12

2015-07-25 Thread zimbatm
Thank you for the feedback Paulus. Just to give an idea of how much work is involved to make the images official, here are the steps I think would be taken: * transfer the github repo zimbatm/nixbox to the nixos org, probably rename the project * create a new nixos org on atlas at https

[Nix-dev] [ANN] Vagrant boxes for 14.12

2015-07-24 Thread zimbatm
Hi, here are new vagrant boxes for virtualbox derived from the nixbox project for nixos 14.12: - zimbatm/nixos-14.12-x86_64 https://atlas.hashicorp.com/zimbatm/boxes/nixos-14.12-x86_64 - zimbatm/nixos-14.12-i686 https://atlas.hashicorp.com/zimbatm/boxes/nixos-14.12-i686 Vagrant

Re: [Nix-dev] Why is there no netctl?

2015-07-18 Thread zimbatm
I'm not a core dev but it seems to me that netctl https://wiki.archlinux.org/index.php/Netctl is a tool that Arch Linux introduced recently ? There's probably no objection to have it packaged, just that network settings is already handled by a couple of other tools already. ​ On Sat, 18 Jul 2015

Re: [Nix-dev] NixOS Foundation

2015-07-18 Thread zimbatm
If you ever get tired to managing the admin yourself you can always join the Software Freedom Conservancy https://sfconservancy.org/. I have never used them personally but they seem to be well respected each time I saw them mentioned. They are also much in the background and don’t touch the

[Nix-dev] Meetup in London ?

2015-07-18 Thread zimbatm
Hello, anyone wants to meetup in London to talk about their NixOS experience ? We could just gather in a co-working space and try to help each-other to package missing software or something. Or if anyone wants to talk about their grand master plan on how to overtake the universe with NixOS. I'm

Re: [Nix-dev] How to package Heroku Toolbelt?

2013-11-18 Thread Jonas Pfenniger (zimbatm)
own set of Gems. No? 2) Does anybody else have this readline issue? Can we define this rb-readline Gem as a dependency of the Ruby Nix package? On Mon, Nov 18, 2013 at 6:59 AM, Jonas Pfenniger (zimbatm) zimb...@zimbatm.com wrote: Alternatively you could also just install the heroku

Re: [Nix-dev] How to package Heroku Toolbelt?

2013-11-17 Thread Jonas Pfenniger (zimbatm)
Alternatively you could also just install the heroku and the foreman gem for the same effect. The toolbelt is really just a distribution of these gems with a bundled ruby interpreter, it's principally meant for OSes with a broken package management like OSX and Windows (they want to avoid support

[Nix-dev] Issues with Nix from source on OSX

2013-02-06 Thread Jonas Pfenniger (zimbatm)
checking for bison... /usr/bin/bison checking for perl... /usr/bin/perl checking for sed... /usr/bin/sed checking for tar... /usr/bin/tar checking for bzip2... /usr/bin/bzip2 checking for xz... /Users/zimbatm/.nix-profile/bin/xz checking for dot... /usr/local/bin/dot checking for dblatex... no checking

<    1   2   3   4   5