Re: [Nix-dev] Tex rebuild after unstable update

2015-07-27 Thread Eelco Dolstra
Hi,

On 27/07/15 13:50, Matthias Beyer wrote:

 I had two nixos-unstable updates in the last two days and both times I
 had to rebuild tex from source. Any hints where to start investigation
 on this?

If you mean TeXlive: it's not built by Hydra anymore due to its size
(https://github.com/NixOS/nixpkgs/commit/7f54f99656de36558a6ca7d78f7e42411aa2163c).

-- 
Eelco Dolstra | LogicBlox, Inc. | http://nixos.org/~eelco/
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Tex rebuild after unstable update

2015-07-27 Thread Vladimír Čunát
On 07/27/2015 03:16 PM, Matthias Beyer wrote:
 I don't want to rebuild texlive all the time...

Managing it by nix-env is the easiest way. You can update it explicitly
when you want.

Vladimir




smime.p7s
Description: S/MIME Cryptographic Signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] Tex rebuild after unstable update

2015-07-27 Thread Eelco Dolstra
Hi,

On 27/07/15 15:16, Matthias Beyer wrote:

 oh, that's sad. Can I somehow pin the local package to a specific
 commit in the nixpkgs tree? 

You can probably do something like (untested):

  environment.systemPackages = [
(import (fetchTarball
https://github.com/NixOS/nixpkgs-channels/archive/3b8e2f7e7a69a3a53a0cb8029973055763b6e309.tar.gz)
{}).texlive
  ];

You can also install texlive using nix-env - that way it won't be updated along
with the rest of the system.

-- 
Eelco Dolstra | LogicBlox, Inc. | http://nixos.org/~eelco/
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev