Re: [Nix-dev] Nix expression built-in type limitations

2015-05-01 Thread Shea Levy
Hello, On Apr 30, 2015, at 4:45 PM, Terrance Kennedy terrancerkenn...@gmail.com wrote: Hi, I'm working on a Python project to convert Python built-in types to Nix built-in types and it raised some quesions on the limitations of built-in Nix types. I've been able to gather some

[Nix-dev] gold linker in shell.nix

2015-05-01 Thread Nikita Karetnikov
How do I link with gold in nix-shell? ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] How to bootstrap a server using Nixops?

2015-05-01 Thread Jeffrey David Johnson
On Fri, 1 May 2015 08:46:14 + Rob Vermaas rob.verm...@gmail.com wrote: Hi Jeff, On Thu, Apr 30, 2015 at 11:17 PM, Jeffrey David Johnson jef...@gmail.com wrote: It's possible I'm getting the wrong idea about what nixops is for, but I used it to set up an Amazon EC2 instance with

[Nix-dev] Some package outputs not linked into the system profile

2015-05-01 Thread Tim Williams
Hi all, Last weekend I installed my first full NixOS system on my Thinkpad and overall everything went relatively smoothly (I was brave enough to try the unstable channel). I added all desired packages to environment.systemPackages to start with, but have since noticed that not all build outputs

Re: [Nix-dev] How to bootstrap a server using Nixops?

2015-05-01 Thread Rob Vermaas
Hi Jeff, On Thu, Apr 30, 2015 at 11:17 PM, Jeffrey David Johnson jef...@gmail.com wrote: It's possible I'm getting the wrong idea about what nixops is for, but I used it to set up an Amazon EC2 instance with the idea of logging into the server and administering it using local commands

[Nix-dev] Nix expression built-in type limitations

2015-05-01 Thread Terrance Kennedy
Hi, I'm working on a Python project to convert Python built-in types to Nix built-in types and it raised some quesions on the limitations of built-in Nix types. I've been able to gather some information using nix-repl and reading the Nix expression parser code, but am not sure on the following:

Re: [Nix-dev] Some package outputs not linked into the system profile

2015-05-01 Thread Vladimír Čunát
Hi. On 05/01/2015 09:30 PM, Tim Williams wrote: Can this behaviour be easily explained? Explanation is easy: if a multiple-output derivation is used as a build input or systemPackages, only the first output is meant (in the current master). Until recently, multiple outputs were rather rare,

Re: [Nix-dev] gold linker in shell.nix

2015-05-01 Thread Vladimír Čunát
On 05/01/2015 06:21 PM, Nikita Karetnikov wrote: How do I link with gold in nix-shell? Stdenv should put ld.gold on PATH, so then it can be used just as ld.gold is used, I guess. Vladimir smime.p7s Description: S/MIME Cryptographic Signature ___