Re: [Nix-dev] Overwriting or merging Nix expressions

2014-07-08 Thread Roger Qiu
Hello Wout, Do you mean something like this: # Inside B.nix something.enable = true; # Inside A.nix that imports B.nix something.enable // false; The link you sent me didn't give an example of overwriting a previous expression. Also what about the merging of: services.cron.enable = false;

Re: [Nix-dev] Writing a Nix evaluator in Haskell

2014-07-08 Thread Peter Simons
Hi John, Peter, did you it move [the repository] to someplace else? I have re-created the repository at https://github.com/peti/language-nix. Originally, I attempted to parse Nix with Parsec, and I got quite far. The code in 'master' can parse almost all of all-packages.nix correctly. At some

Re: [Nix-dev] Compile Haskell program on nixos that works on ubuntu server

2014-07-08 Thread Sergey Mironov
Hi! My 2 cents: I create /nix/store on standalone server and copy all the dependencies (as listed by nix-store -qR app) there in order to run NixOS application. Of cause, I use root access in order to do it. Refards, Sergey 2014-07-06 15:56 GMT+04:00 Vladimír Čunát vcu...@gmail.com: On