Re: [Nix-dev] Force Hydra to use localhost for building

2014-11-12 Thread Peter Simons
Hi Nikolay,, Unfortunately, with distributed build enabled Hydra doesn't use its own server for building at all. it does, but only if all remote machines are busy. If you have build slaves with a configured maximum capacity of n jobs, then the n+1-th parallel build job (and all beyond that)

Re: [Nix-dev] Vim conceal, cscope and other features

2014-11-12 Thread Andreas Herrmann
Hi, Is there an easy way to enable them (I know I can copy the nix file and edit it to my hearts content, but I was hoping there is a better way)? You could use `overrideDerivation` and hotfix the configureFlags. Grep for it in nixpkgs/pkgs to see a few example. There is an instructive one

[Nix-dev] Introducing nox and nox-review

2014-11-12 Thread Georges Dubus
Hello everyone. I just realized I've never properly announced nox on the mailing list, so here it comes. I'm happy to present the nox tools suite, which is a set of tools designed to improve the use of Nix and NixOS. The code can be found at https://github.com/madjar/nox, and nox is available in

Re: [Nix-dev] Introducing nox and nox-review

2014-11-12 Thread Damien Cassou
Hi, On Wed, Nov 12, 2014 at 1:46 PM, Georges Dubus georges.du...@gmail.com wrote: I just realized I've never properly announced nox on the mailing list, so here it comes. I wrote a simple nixos-update script that might also be useful to some users. Its comment is: # Update ~/nixpkgs git

Re: [Nix-dev] Introducing nox and nox-review

2014-11-12 Thread Marc Weber
https://nixos.org/wiki/Howto_find_a_package_in_NixOS is the place to add a reference.. Marc Weber ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] Introducing nox and nox-review

2014-11-12 Thread member MP2E
Thank you for posting this! I was not aware such utilities existed, but it will make managing pull requests much easier for me from here on out On Wed, Nov 12, 2014 at 5:11 AM, Damien Cassou damien.cas...@gmail.com wrote: Hi, On Wed, Nov 12, 2014 at 1:46 PM, Georges Dubus

Re: [Nix-dev] clang-based stdenv for OSX Yosemite

2014-11-12 Thread Wout Mertens
So on a fresh 10.10 with XCode 6.1 the joelteon master branch can't build things like Python. The error is below, I presume it is because the downloaded clang depends on libraries that aren't available. Should I just rebuild the world without binary cache? configure:3947: checking whether the C

Re: [Nix-dev] Vim conceal, cscope and other features

2014-11-12 Thread Vladimír Čunát
Hi. On 11/12/2014 10:53 AM, Andreas Herrmann wrote: You could use `overrideDerivation` and hotfix the configureFlags. Grep for it in nixpkgs/pkgs to see a few example. That's an overkill. vim_configurable uses your ~/.nixpkgs/config.nix file. Basic idea is like this

Re: [Nix-dev] Vim conceal, cscope and other features

2014-11-12 Thread Richard Wallace
That's exactly what I was looking for, thanks! On Wed, Nov 12, 2014 at 8:15 AM, kickmymotorcy...@gmail.com kickmymotorcy...@gmail.com wrote: Rich, If you install the package `vimHugeX` instead of `vim`, you get a bunch of other features, including cscope and conceal. Here's the output of

[Nix-dev] Fwd: Haskell doctest

2014-11-12 Thread Benno Fünfstück
Ah sorry, I wrote that on my phone so the answer was a bit short :). You just type eval $buildPhase while you're in nix-shell. eval is a bash builtin to execute a bash script from a string, and the buildPhase environment variable contains the script that nix would use to build your project when

Re: [Nix-dev] clang-based stdenv for OSX Yosemite

2014-11-12 Thread Eric Seidel
Can you update to the latest joelteon/master (3b57c2b) and build Python again? Joel's hydra seems to be building Python just fine at the moment, and I've also just done it locally without issue. Thanks! Eric On Nov 12, 2014, at 07:20, Wout Mertens wout.mert...@gmail.com wrote: So on a