Re: [Nix-dev] enableParallelbuilding for many packages

2012-10-25 Thread Vladimír Čunát
Hi. On 10/24/2012 11:28 PM, Marc Weber wrote: People who think accuracy is most important will disable this feature anyway - but some like me sometimes just have to do rebuilds .. and they may just work more often than not. For the regular build farm work the total speedup will probably be ne

Re: [Nix-dev] enableParallelbuilding for many packages

2012-10-26 Thread Vladimír Čunát
On 10/26/2012 12:36 AM, Marc Weber wrote: Buildfarm: You're wrong and you know it. Parallelizing nix builds is easy (scaling horizontally) - You can write your own Amazon buildfarm within one day which scales automatically probably. The problem is "time to get a new build" - and for that (securit

Re: [Nix-dev] Picking a GHC version to use

2012-10-30 Thread Vladimír Čunát
On 10/30/2012 05:29 PM, Richard Wallace wrote: Ok, I guess I'm just not sure how to specify the compiler version. When I ran `nix-env -qa | grep cabal-dev` after adding the .nix file and modifying haskell-packages.nix, I saw something like 6 cabal-dev-0.9.1 possibilities. I figured that those we

Re: [Nix-dev] Nix profiles

2012-10-30 Thread Vladimír Čunát
On 10/30/2012 09:50 PM, Richard Wallace wrote: I would have tried that, but after switching to a new profile none of the nix commands were available. I installed using the generic x86_64 tarball, which apparently means that they are installed in the nix store. So when I switched to a non existe

Re: [Nix-dev] hitting maximum number of hard links on btrfs

2012-10-31 Thread Vladimír Čunát
On 10/31/2012 12:14 AM, Mathijs Kwik wrote: So btrfs has a soft limit, depending on file name/path length, which only kicks in in this special situation where you have many hard links to a file in the same directory. Given nix's special behavior in /nix/store/.links, I think this is the problem.

Re: [Nix-dev] How do I add Firefox extensions?

2012-12-15 Thread Vladimír Čunát
Hello. On 12/14/2012 06:22 AM, Bill Trost wrote: I've spent a good part of an evening trying to figure out how to convince the Firefox that came with the Nixos install that it should use extensions other than Shockwave flash. This is a 686 machine, so I should be able to use most anything, but I

Re: [Nix-dev] Distribution compatibility

2012-12-15 Thread Vladimír Čunát
Hi, I quite don't see why such efforts would be worthwhile (just my personal opinions... and maybe I misunderstand you). 1) Why would you want a snapshot of another distribution's installation in nix store (or anything equivalent)? You would better install into VM (the other distributions or

Re: [Nix-dev] How do I add Firefox extensions?

2012-12-17 Thread Vladimír Čunát
On 12/16/2012 03:22 AM, Bill Trost wrote: Is this why it's called the unstable channel? :-) It looks like gecko-mediaplayer is failing because gcc is too new for the version in the tree. Well, some packages aren't used and thus they're unmaintained and get stale easily. I believe I just t

Re: [Nix-dev] How do I add Firefox extensions?

2012-12-18 Thread Vladimír Čunát
On 12/18/2012 03:50 AM, Bill Trost wrote: I'm a little amazed out how difficult this is turning out to be -- it seems like getting videos playing in Firefox should be basic, out-of-the-box functionality, not an exercise in distro management (I get to do enough of that at work, thank you!). The

Re: [Nix-dev] localizing firefox

2013-01-08 Thread Vladimír Čunát
On 01/08/2013 04:46 PM, Sergey Mironov wrote: Ok, got it. Firefox has a general.useragent.locale option in about:config. Changing it to 'ru' (in my case) makes any additional command-line options unnecessary. Do you have LANG=ru in the environment? I thought after that most programs should use

Re: [Nix-dev] [***SPAM***] var directory

2013-01-08 Thread Vladimír Čunát
Hi. On 01/08/2013 07:47 PM, Christopher Howard wrote: I was wondering, in building the software, how does Nix handle the location of /var? I know that software built with autotools usually allows one to change the location of the local state directory. Does Nix change this to some new location?

Re: [Nix-dev] [***SPAM***] var directory

2013-01-08 Thread Vladimír Čunát
I might add that NixOS services (daemons, etc.) use /var heavily, but that shouldn't affect you AFAIK. Vlada smime.p7s Description: S/MIME Cryptographic Signature ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailma

Re: [Nix-dev] bsd-games-2.17: monop

2013-01-08 Thread Vladimír Čunát
On 01/09/2013 01:04 AM, Christopher Howard wrote: On my system, the bsd-games-2.17 package installed an essential data file for the monop game to ~/.nix-profile/share/games/monop-cards.pck. However, the monop game dies trying to get this file from /usr/share/games/monop-cards.pck. Is this an issu

Re: [Nix-dev] query package meta information

2013-01-08 Thread Vladimír Čunát
On 01/09/2013 03:14 AM, Christopher Howard wrote: Is there a convenient tool available already for querying the meta data of a package and displaying it in a nice format? I was able to get the info with nix-env -qa --meta --xml, but the xml output is a bit much. It wouldn't be hard to make such a

Re: [Nix-dev] reproducable systems at a (much) later point / archive.org

2013-01-10 Thread Vladimír Čunát
On 01/09/2013 10:19 PM, Ludovic Courtès wrote: Florian Friesdorf skribis: Given that nix would support a "last-resort mirror" and given we could convince some instution (e.g. archive.org) to provide such a mirror, the world would be always able to exactly reproduce software installations and w

Re: [Nix-dev] understanding Nix: dependencies

2013-01-10 Thread Vladimír Čunát
On 01/10/2013 08:07 PM, Shea Levy wrote: The long answer is: Currently, the way we build most of our packages the build time dependencies (e.g. where do I get my library headers) and the run time dependencies (e.g. which library do I link to) are the same, so updating the run time dependencies wi

[Nix-dev] Nix dependencies

2013-01-10 Thread Vladimír Čunát
Hi. This is a follow-up, but it considers a long-term thoughts of mine about nix package management evolution. I'll be glad to read your opinions. On 01/10/2013 08:26 PM, Vladimír Čunát wrote: there are external-runtime dependencies (let me call them that), like executables from

Re: [Nix-dev] understanding Nix: dependencies

2013-01-12 Thread Vladimír Čunát
On 01/11/2013 08:46 PM, Shea Levy wrote: OK, I've now implemented one such solution: https://github.com/NixOS/nixpkgs/commit/d1662d715514e6ef9d3dc29f132f1b3d8e608a18 . So now in the event a rebuild would be too costly, you can still patch a broken/insecure dependency without breaking nix invarian

Re: [Nix-dev] ffmpeg 1.1

2013-01-14 Thread Vladimír Čunát
On 01/13/2013 11:03 PM, Mathijs Kwik wrote: A quick look at all-packages.nix shows that the following packages currently use ffmpeg 1.0: - vlc - cfdg If these 2 compile fine with 1.1, then 1.1 can replace 1.0, otherwise just have 1.0 and 1.1 I would call it 1.1 for now, as ffmpeg upgrades usual

Re: [Nix-dev] Providing more explicit nix installation instructions

2013-01-14 Thread Vladimír Čunát
On 01/14/2013 12:54 PM, Florian Friesdorf wrote: Ellis Whitehead writes: (..) Sometimes things have worked out, sometimes they haven't. Usually, the documentation lacks a bit of explicit (sometimes vital) detail. Since I'll probably go through this processes occasionally in the future, I'd be

Re: [Nix-dev] Nix failed to build on FreeBSD 9.1

2013-01-14 Thread Vladimír Čunát
The first error I see is that the "type" command doesn't recognize its parameter -p. I've never used any BSD, so I'm quite unaware of the differences. BDW, on our build farm we have 32/64-bit binaries for freebsd AFAIK. Vlada smime.p7s Description: S/MIME Cryptographic Signature _

Re: [Nix-dev] Nix failed to build on FreeBSD 9.1

2013-01-17 Thread Vladimír Čunát
On 01/17/2013 01:20 AM, Henry Lenzi wrote: On Tue, Jan 15, 2013 at 9:26 PM, James Cook wrote: It looks like you're missing something related to docbook. Did you try installing the textproc/docbook port, or looking for other ports related to docbook? Yes, I did install the docbook port, but t

Re: [Nix-dev] chromiumDev logs missing from hydra

2013-01-19 Thread Vladimír Čunát
On 01/19/2013 08:07 PM, Florian Friesdorf wrote: I wanted to look at broken chromiumDev build: http://hydra.nixos.org/job/nixpkgs/trunk/chromiumDev but its logs are not available: http://hydra.nixos.org/build/3756070/nixlog/1/raw http://hydra.nixos.org/build/3759653/nixlog/1/raw How can that ha

Re: [Nix-dev] Let's merge 'stdenv-updates-gcc47' into 'stdenv-updates'

2013-01-21 Thread Vladimír Čunát
Hi. On 01/21/2013 12:42 PM, Eelco Dolstra wrote: Well, GCC updates tend to break many packages, so this will delay a stdenv-updates merge even further. I would prefer merging stdenv-updates into master first (to get the latest Glibc, and some other stuff) and do GCC 4.7 after that. Nice solut

Re: [Nix-dev] "svn-revision" empty / nixos channel as branch?

2013-01-21 Thread Vladimír Čunát
On 01/21/2013 05:12 AM, Florian Friesdorf wrote: I'm using the file to maintain branches "channel-nixos" of nixos and nixpkgs, so I can develop new features based on a supposedly more stable base. Oh, I'm using parts of those scripts as well. I was thinking of parsing http://hydra.nixos.org/jo

Re: [Nix-dev] "svn-revision" empty / nixos channel as branch?

2013-01-24 Thread Vladimír Čunát
On 01/22/2013 10:17 PM, Florian Friesdorf wrote: Am I correct, that the channel would be trunk-combined? http://hydra.nixos.org/jobset/nixos/trunk-combined That depends on your use case. I have only services in nixos and so I rebuild it very rarely. However, I quite often build or update somet

Re: [Nix-dev] GNU Guix 0.1 released (alpha)

2013-01-24 Thread Vladimír Čunát
On 01/20/2013 11:46 PM, Ludovic Courtès wrote: Technically, I believe an EDSL has more to offer than a DSL with its own implementation: tooling (compiler, debugger, REPL, editor support, etc.), libraries (SRFI-1, etc.), general-purpose features (data structures, i18n, networking, etc.), and integ

Re: [Nix-dev] Bundling nix-expressions with source code

2013-01-24 Thread Vladimír Čunát
On 01/24/2013 04:13 PM, Rickard Nilsson wrote: OK, I see why that is not feasible. The reason I ask, is that it seems reasonable that a Nix-aware upstream package developer should be able to define how the package should be built (dependencies, build flags etc), in tandem with the package develop

Re: [Nix-dev] Bundling nix-expressions with source code

2013-01-26 Thread Vladimír Čunát
On 01/25/2013 09:32 AM, Rickard Nilsson wrote: Den 2013-01-24 23:01:03 skrev Vladimír Čunát : I see nix is getting quite popular :-) The maintainer is of course welcome to maintain also the nix expression *within* nixpkgs, who else is a better candidate... Yes, absolutely, and that is

[Nix-dev] Adding runtime library search path

2013-01-26 Thread Vladimír Čunát
Hi. I'm having a problem with a program trying to find libgcc_s.so at runtime. I see that gcc has been stripped from rpath, which is probably the cause of the problem. How to easily add one particular entry without preventing deletion of other unnecessary rpath entries? Thanks, Vlada s

Re: [Nix-dev] Adding runtime library search path

2013-01-26 Thread Vladimír Čunát
On 01/26/2013 02:52 PM, Marc Weber wrote: How to easily add one particular entry without preventing deletion of other unnecessary rpath entries? patchelf also has a --print-rpath option. Yes, that's how I checked that gcc is missing. I see now, so in fixupPhase I could --print-rpath and set i

Re: [Nix-dev] Adding runtime library search path

2013-01-26 Thread Vladimír Čunát
On 01/26/2013 04:18 PM, Lluís Batlle i Rossell wrote: On Sat, Jan 26, 2013 at 03:00:02PM +0100, Vladimír Čunát wrote: I remember as if something like NIX_LDFLAGS="-lgcc" made it keep the rpath to gcc/lib. Many packages require that (due to the always-dynamic nature of glibc), so nixp

Re: [Nix-dev] Adding runtime library search path

2013-01-26 Thread Vladimír Čunát
On 01/26/2013 02:44 PM, Vladimír Čunát wrote: I'm having a problem with a program trying to find libgcc_s.so at runtime. I see that gcc has been stripped from rpath, which is probably the cause of the problem. BTW, I confirm that setting dontPatchELF seems to solve the problem, but ther

Re: [Nix-dev] Adding runtime library search path

2013-01-26 Thread Vladimír Čunát
On 01/26/2013 08:59 PM, Peter Simons wrote: adding NIX_CFLAGS_LINK = "-lgcc_s"; to the build expression should do the trick. That's what I was searching for, thanks, it works. The result: https://github.com/NixOS/nixpkgs/pull/278 I still don't understand the difference from NIX_LDFLAGS, t

Re: [Nix-dev] Create repository

2013-01-28 Thread Vladimír Čunát
Hi. On 01/28/2013 11:39 AM, Вячеслав Хахалкин wrote: Hi, I want to create a repository with their packages, tell me how to do it. I don't know what you mean. You want to download our repository of nix expressions? Or something else? Vlada smime.p7s Description: S/MIME Cryptographic Signa

Re: [Nix-dev] Create repository

2013-01-28 Thread Vladimír Čunát
On 01/28/2013 02:43 PM, Вячеслав Хахалкин wrote: I work for a company, and we have our packages we want to use in a separate repository, I'm not to understand how to implement it. I see. The easiest way is to create a git branch within the same repository (you don't have to publish it). I pers

Re: [Nix-dev] Create repository

2013-01-28 Thread Vladimír Čunát
On 01/28/2013 09:32 PM, Вячеслав Хахалкин wrote: Excuse me, I want to create a channel with its own set of packages, how to do it, I do nix-push - dest / tmp / my-channel - bzip2 - manifest - url-prefix http://my-server/my-channel and what to do, how to package in this channel I've never done

Re: [Nix-dev] Create repository

2013-01-29 Thread Vladimír Čunát
On 01/29/2013 11:16 AM, Вячеслав Хахалкин wrote: Hello again, I'm doing nix-build /root/my_build/nixpkgs-1.0pre23616_615b1d4/pkgs/applications/misc/hello/ex-2/ -A hello where default.nix has this code => https://gist.github.com/4663196 and get this error: error: cannot auto-call a function th

[Nix-dev] Strange build errors

2013-01-30 Thread Vladimír Čunát
Hi, does anyone have an idea about this [error]? It seems random and it disappeared in the next build although IMO nothing relevant changed. I found some references to a make bug that does this, but I'm not sure it's the same cause. [error] http://hydra.nixos.org/build/3930526 Vlada smim

Re: [Nix-dev] Strange build errors

2013-01-30 Thread Vladimír Čunát
On 01/30/2013 02:46 PM, Peter Simons wrote: yes, this is a bug in Make. For some reason, these kind of errors occur every now and then. I don't know what triggers it either. The only way I know to avoid this issue is to disable parallel building. Wouldn't this patch fix it? http://old.nabble.c

Re: [Nix-dev] Reducing the number of Haskell builds in the NixOS/Nixpkgs channel

2013-01-30 Thread Vladimír Čunát
On 01/30/2013 01:45 PM, Eelco Dolstra wrote: I would suggest removing most of the GHC versions from the channels (i.e. remove "recurseIntoAttrs"), except the default (7.4.2) and the latest (7.6.2). If desired, we could create a separate Hydra jobset to build the other versions. What do you thin

Re: [Nix-dev] Strange build errors

2013-01-30 Thread Vladimír Čunát
On 01/30/2013 03:26 PM, Eelco Dolstra wrote: If I understand it correctly, this only improves the error message from Make, it doesn't fix the underlying problem. In the build in question, the actual problem occurs a bit earlier: In file included from /tmp/nix-build-kde-workspace-4.8.4.drv-0/k

[Nix-dev] Hydra evaluation error in x-updates

2013-01-31 Thread Vladimír Čunát
Hi, hydra is showing a strange evaluation error in x-updates http://hydra.nixos.org/jobset/nixpkgs/xorg-test#tabs-errors I've been unable to reproduce it on my machine and the hydra error doesn't seem to say anything specific. What is the closest way to simulate hydra evaluation? Thanks, Vl

Re: [Nix-dev] Hydra evaluation error in x-updates

2013-01-31 Thread Vladimír Čunát
On 01/31/2013 01:11 PM, Vladimír Čunát wrote: hydra is showing a strange evaluation error in x-updates http://hydra.nixos.org/jobset/nixpkgs/xorg-test#tabs-errors I've been unable to reproduce it on my machine and the hydra error doesn't seem to say anything specific. What is the clos

Re: [Nix-dev] Who and when, Fosdem 2013

2013-01-31 Thread Vladimír Čunát
On 01/31/2013 10:16 PM, Sander van der Burg - EWI wrote: I've just managed to renew my passport, so it seems that I can also be there. Who else is going? Unfortunately I'm not coming, it's quite far for me from Prague. I'm quite sure that in Schengen arera it's sufficient to have your ID (if

[Nix-dev] KDE problems

2013-02-02 Thread Vladimír Čunát
Hi, some kde48 packages seem to sometimes non-deterministically fail to build without reporting any error (at least in x-updates). Any ideas? Vlada smime.p7s Description: S/MIME Cryptographic Signature ___ nix-dev mailing list nix-dev@lists.science

Re: [Nix-dev] Systemd branch merged

2013-02-04 Thread Vladimír Čunát
On 02/04/2013 06:30 PM, Rok Garbas wrote: awesome work, tnx. everything works for me except virtualbox is not loading drivers thus not working, anybody having similar problem? Not really similar, I had some minor problems with Wi-Fi due to different driver priority and different interface nam

Re: [Nix-dev] nix-channel --update does not work

2013-02-05 Thread Vladimír Čunát
On 02/05/2013 03:00 PM, Ambrus Kaposi wrote: root# nix-channel --update fetching list of Nix archives at `http://nixos.org/releases/nixos/nixos-0.2pre4454_979117b-789154b/MANIFEST.bz2'. I just checked and the bz2 files are in the directory, I can fetch them. In case of problems, you should be

Re: [Nix-dev] nix-channel --update does not work

2013-02-05 Thread Vladimír Čunát
On 02/05/2013 03:54 PM, Eelco Dolstra wrote: Because I just implemented that :-) I suspected it :-) BTW, how should one best get manifests for testing branches which don't have channels? Vlada smime.p7s Description: S/MIME Cryptographic Signature _

[Nix-dev] A strict evaluation issue

2013-02-10 Thread Vladimír Čunát
Hi, I would be very glad if someone could enlighten me why this fails http://hydra.nixos.org/build/4042155 It looks like the evaluator doesn't properly handle closures, otherwise I see no explanation, but perhaps I'm wrong. Thanks, Vlada smime.p7s Description: S/MIME Cryptographic Signature

Re: [Nix-dev] quoted vs unquoted urls in Nix expressions

2013-02-17 Thread Vladimír Čunát
On 02/17/2013 03:16 PM, Marc Weber wrote: What is the difference between quoted and unquoted URLs in Nix expressions? In nixpkgs the fetchurl urls are sometimes quoted and sometimes not. nix has urls as native type AFAIK. let str = 'foo' let url= http://bar The latter catches typos such as htt

Re: [Nix-dev] Enable chroot support on old glibc versions.

2013-02-19 Thread Vladimír Čunát
Why not a pull request, so we can have it with the stdenv-updates (which shouldn't take long now)? Vlada smime.p7s Description: S/MIME Cryptographic Signature ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/l

Re: [Nix-dev] packaging razor-qt, how to deal with /etc/xdg/ and such

2013-02-19 Thread Vladimír Čunát
On 02/18/2013 10:50 PM, Bjørn Forsman wrote: I'm trying to build razor-qt (a small desktop environment written in Qt) for nix. I quickly bumped into issues during the install phase: razor-qt tries to write stuff to /etc/xdg/{menus,autostart,razor} and /usr/share/{xsession,apps/kdm/sessions}. And

Re: [Nix-dev] EeePC wireless interface no longer recognized by iwconfig

2013-02-21 Thread Vladimír Čunát
On 02/21/2013 12:23 PM, Lluís Batlle i Rossell wrote: iwconfig interface is obsolete since long, and unsupported from 3.6 or 3.7 upwards, iirc. 'iw' is what you want. We might want to modify the nixos module so iw is included instead of iwconfig (by default). Vlada smime.p7s Description:

Re: [Nix-dev] "nix-env -i sdl-env" trouble

2013-02-23 Thread Vladimír Čunát
On 02/23/2013 10:51 AM, Bjørn Forsman wrote: name = "sdl"; [bfo@nixos:~]$ nix-env -i sdl-env error: selector `sdl-env' matches no derivations IMO you have a different name. Vlada smime.p7s Description: S/MIME Cryptographic Signature __

Re: [Nix-dev] "nix-env -i sdl-env" trouble

2013-02-23 Thread Vladimír Čunát
On 02/23/2013 11:15 AM, Bjørn Forsman wrote: 2) I changed the name to "sdl-env" but it's no good: [bfo@nixos:~]$ nix-env -i sdl-env error: selector `sdl-env' matches no derivations Hm. Doesn't my nix-env read ~/.nixpkgs/config.nix? I added your code int o my ~/.nixpkgs/config.nix $ nix

Re: [Nix-dev] "nix-env -i sdl-env" trouble

2013-02-23 Thread Vladimír Čunát
On 02/23/2013 12:20 PM, Bjørn Forsman wrote: So by running "nix-env -i env-sdl" (not sdl-env) it works! Yes, I found that too and thought it's seen from the log I sent... but by attribute name it should also work (and it's usually more practical). Perhaps you've changed the attribute name...

Re: [Nix-dev] "nix-env -i sdl-env" trouble

2013-02-23 Thread Vladimír Čunát
On 02/23/2013 12:47 PM, Bjørn Forsman wrote: I mean IRC. Too much embedded programming for me lately :-) :-D Yes, it's a kind of interrupt. smime.p7s Description: S/MIME Cryptographic Signature ___ nix-dev mailing list nix-dev@lists.science.uu.nl

Re: [Nix-dev] nixos hackday on 2.3.

2013-02-23 Thread Vladimír Čunát
On 02/23/2013 11:56 PM, Nicolas Pierron wrote: Nice list, at what time & timezone would you be hacking, to know if we can provide some help over IRC. Timezone in Ljubljana should be GMT+1. smime.p7s Description: S/MIME Cryptographic Signature ___ n

Re: [Nix-dev] Broken xserve after update to nix-1.2 persists in nix-1.3

2013-02-25 Thread Vladimír Čunát
On 02/25/2013 09:52 PM, Patrick Wheeler wrote: `nix-stor --verify --check-contents` http://pastebin.com/EezSb9NU /nix/store/ivnjbpksshmh10d6c3gsk2aa32lwxpk8-nixos-0.1pre4014_78bd54c-f0997b9 This might be the system you're running, is it? The others shouldn't affect booting at all. Vlada sm

Re: [Nix-dev] Broken xserve after update to nix-1.2 persists in nix-1.3

2013-02-26 Thread Vladimír Čunát
On 02/26/2013 12:21 AM, Patrick Wheeler wrote: Sorry for the small repeat here. Are you talking about the github branch? https://github.com/NixOS/nixpkgs/tree/stdenv-updates or use the following channel? The channel should follow the branch. IMO it's easiest to have binary cache enabled, t

Re: [Nix-dev] [Nix-commits] [NixOS/nixpkgs] 9642ad: libsoup: Update to 2.40.3

2013-02-26 Thread Vladimír Čunát
On 02/26/2013 08:21 AM, Lluís Batlle i Rossell wrote: These gnome packages require a whole constellation of versions to match; I think that an update to libsoup alone won't work, if not updating it together with glib_networking, glib, gtk, gconf, blablabla. Maybe Vladimir knows more about this.

Re: [Nix-dev] Nix 1.4 released

2013-02-26 Thread Vladimír Čunát
On 02/26/2013 02:46 PM, Eelco Dolstra wrote: * Language change: The expression "${./path} ..." now evaluates to a string instead of a path. That means the such a file isn't copied into the store, and is included as a plain "./path" string, etc. Right? BTW, I believe the hardlink con

Re: [Nix-dev] Nix 1.4 released

2013-02-27 Thread Vladimír Čunát
On 02/27/2013 12:00 PM, Eelco Dolstra wrote: On 26/02/13 21:25, Vladimír Čunát wrote: On 02/26/2013 02:46 PM, Eelco Dolstra wrote: * Language change: The expression "${./path} ..." now evaluates to a string instead of a path. That means the such a file isn't copied

Re: [Nix-dev] Nix 1.4 released

2013-02-28 Thread Vladimír Čunát
On 02/28/2013 01:08 PM, Eelco Dolstra wrote: I'm pleased to announce the availability of a new stable release of the Nix package manager. Release 1.5 can be found at http://hydra.nixos.org/release/nix/nix-1.5 This is a brown paper bag release to fix a regression introduced by the hard link

[Nix-dev] Nixpkgs: libchop on stdenv

2013-03-02 Thread Vladimír Čunát
Hi. Just a reminder in case you haven't noticed: libchop doesn't build on stdenv (due to using gets). http://hydra.nixos.org/job/nixpkgs/stdenv/libchop I see that Ludo is probably the upstream :-) and IMHO in the long term this needs to be fixed anyway. Vlada smime.p7s Description: S/MIME

Re: [Nix-dev] Nixpkgs: libchop on stdenv

2013-03-02 Thread Vladimír Čunát
On 03/02/2013 11:15 AM, Ludovic Courtès wrote: Just a reminder in case you haven't noticed: libchop doesn't build on stdenv (due to using gets). http://hydra.nixos.org/job/nixpkgs/stdenv/libchop Thanks for the reminder. Commit b6452df fixes it. Nice. You're welcome. Vlada smime.p7s Descr

Re: [Nix-dev] "invalid mode for dlopen()" (mixing master and stdenv-updates)

2013-03-02 Thread Vladimír Čunát
On 03/02/2013 10:15 PM, James Cook wrote: - Assuming it is, is this a known problem? Why doesn't nix's purity prevent this? I don't know about this particular problem, but one thing seems clear to me: we're trying to get the packages as pure as we can, but many *aren't* completely pure and o

Re: [Nix-dev] read-only store on its own filesystem

2013-03-04 Thread Vladimír Čunát
Hi. On 03/03/2013 09:30 PM, Mathijs Kwik wrote: Why is this check there? Is there a reason not to use this functionality when a mountpoint (store on other fs) is detected? I believe the commands should work the same even if /nix/store is a mount point, although it's a border case and I don't

Re: [Nix-dev] troubles fetching a nar

2013-03-06 Thread Vladimír Čunát
On 03/06/2013 11:43 AM, Sergey Mironov wrote: Hi. I have strange situation while updating nixos: nixos-rebuild can't fetch nar for soprano package, stalling at 99%. This could be a network problem, but anyway, is there a workaround? I've downloaded that nar using wget successfully. What can I do

Re: [Nix-dev] [Nix-commits] [NixOS/nixos] e05a37: rename deprecated option

2013-03-06 Thread Vladimír Čunát
On 03/06/2013 05:16 PM, s...@shealevy.com wrote: It seems this commit has broken the NixOS installer tests: http://hydra.nixos.org/build/4266474 for example fails with "error: creating directory `/nix/store/.links': Read-only file system" That's strange. /nix/store is expected to to be read-onl

Re: [Nix-dev] [Nix-commits] [NixOS/nixos] e05a37: rename deprecated option

2013-03-06 Thread Vladimír Čunát
On 03/06/2013 05:48 PM, Eelco Dolstra wrote: Well, Nix makes /nix/store writable (using a private mount namespace), otherwise it wouldn't be able to do anything. So creating that directory *should* work... That was my meaning... of course I don't know whether this attempt was within this moun

Re: [Nix-dev] Stdenv branch merged

2013-03-07 Thread Vladimír Čunát
On 03/07/2013 11:23 PM, Eelco Dolstra wrote: I've just merged the stdenv branch into master. This gives us Glibc 2.17 and updates to many core packages. Many thanks to all contributors! Good, I was thinking about re-asking this week about any known blocker issues. So gcc-47 is now the stde

Re: [Nix-dev] nix-env and nixos-rebuild cannot start workers

2013-03-08 Thread Vladimír Čunát
Hi, I've never seen anything like this. What's your environment? "set | grep ^NIX" Vlada 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] wicd broken after stdenv-updates

2013-03-13 Thread Vladimír Čunát
On 03/13/2013 08:50 PM, Bjørn Forsman wrote: I'm no python (or nixos) expert, but someone on IRC said they have PYTHONPATH=$HOME/.nix-profile/lib/python2.7/site-packages/:/run/current-system/sw/lib/python2.7/site-packages. I tried it myself and it works. Why isn't PYTHONPATH set to this by defau

[Nix-dev] Webkit status

2013-03-14 Thread Vladimír Čunát
Hi. Has anyone tried a webkit browser after stdenv merge? I tried to really use them now, and they all segfault at the first attempt to show a nontrivial page. I've been unable to find out the reason, though. (The missing-schemas problems are easy to solve but without really working I see no

Re: [Nix-dev] Webkit status

2013-03-14 Thread Vladimír Čunát
On 03/14/2013 04:00 PM, Lluís Batlle i Rossell wrote: (The missing-schemas problems are easy to solve but without really working I see not much sense in committing the solution now.) I've just tested, and vimprobable2 dies by SIGTRAP for me: (.vimprobable2-wrapped:14662): GLib-GIO-ERROR **: No

Re: [Nix-dev] Webkit status

2013-03-14 Thread Vladimír Čunát
On 03/14/2013 04:09 PM, Michael Raskin wrote: Has anyone tried a webkit browser after stdenv merge? I tried to really use them now, and they all segfault at the first attempt to show a nontrivial page. I've been unable to find out the reason, though. (The missing-schemas problems are easy to sol

Re: [Nix-dev] Webkit status

2013-03-14 Thread Vladimír Čunát
On 03/14/2013 03:48 PM, Vladimír Čunát wrote: Has anyone tried a webkit browser after stdenv merge? I tried to really use them now, and they all segfault at the first attempt to show a nontrivial page. I've been unable to find out the reason, though. I rebuilt much without stripping debu

Re: [Nix-dev] i3 to 4.5.1 and Pango fonts

2013-03-19 Thread Vladimír Čunát
On 03/19/2013 02:06 PM, Carles Pagès wrote: vcunat enbled xcb for cairo in x-updates a while ago: https://github.com/NixOS/nixpkgs/commit/ec77a957784e193af5bdd26a75066627a02a37f3 True, and I think we could merge x-updates soon, if people want these features. On the x86*-linux platforms almost

Re: [Nix-dev] wiki and utf-8 characters

2013-03-19 Thread Vladimír Čunát
On 03/19/2013 05:15 PM, Marc Weber wrote: Does anybody has more experience with utf-8 and nixos's mediawiki? Just tried, doesn't work well. It's garbled when saved, not just on display. But http-equiv="Content-Type"> looks good. Speaking of nix wiki... there's quite a steady in-flow of **spa

Re: [Nix-dev] wiki and utf-8 characters

2013-03-21 Thread Vladimír Čunát
On 03/21/2013 10:38 AM, Cillian de Róiste wrote: On Tue, Mar 19, 2013 at 7:05 PM, Rok Garbas wrote: maybe moving to github's wiki. i really hate those textareas. also we dont need to worry about spam and spammers anymore. The current installation of mediawiki is also missing a lot of the usua

Re: [Nix-dev] wiki and utf-8 characters

2013-03-21 Thread Vladimír Čunát
On 03/21/2013 05:12 PM, Marc Weber wrote: Excerpts from Vladimír Čunát's message of Thu Mar 21 11:33:31 +0100 2013: I didn't know about wikis on github, but they look good. They do support .mediawiki as well, so moving the content shouldn't be too difficult. But they restrict access to users wi

Re: [Nix-dev] wiki and utf-8 characters

2013-03-21 Thread Vladimír Čunát
On 03/21/2013 05:24 PM, Marc Weber wrote: I thought this is what github wiki offers, but I've never used it. If it was I would not have spoken up. Github wiki is just a wiki you can edit online. I suggested it being based on the git source once. It looks like github supports .wiki files (links

Re: [Nix-dev] wiki and utf-8 characters

2013-03-21 Thread Vladimír Čunát
On 03/21/2013 05:35 PM, Lluís Batlle i Rossell wrote: On Thu, Mar 21, 2013 at 05:24:36PM +0100, Marc Weber wrote: I thought this is what github wiki offers, but I've never used it. If it was I would not have spoken up. Github wiki is just a wiki you can edit online. You can push to the wiki w

Re: [Nix-dev] wiki and utf-8 characters

2013-03-23 Thread Vladimír Čunát
On 03/23/2013 02:00 PM, Cillian de Róiste wrote: I guess we could also set up a separate repo on github just for the wiki and be very liberal about giving out write access and admin rights for it. That would solve the issue of requiring write access to either the nixpkgs or nixos repos in order t

Re: [Nix-dev] Haskell Parser for (subset of) Nix

2013-03-23 Thread Vladimír Čunát
On 03/23/2013 12:05 PM, Marc Weber wrote: I thought about writing a Haskell interpreter for nix, too. Haskell is very close to nix (being lazy) that comparing performance would be interesting. So what is your goal? If we want some more advanced features for nix (like strong typing), then conv

Re: [Nix-dev] Distributed builds with Hydra

2013-03-24 Thread Vladimír Čunát
On 03/24/2013 08:48 PM, Peter Simons wrote: Is that perception correct? What do I have to do to make Hydra utilize the local machine for builds, too, like nix-env does? Why don't you add localhost to the "remote" build machines? It seems like the most straightforward solution to me and I expec

Re: [Nix-dev] kbuildsococa4 & calligra

2013-03-27 Thread Vladimír Čunát
Hi. On 03/25/2013 06:29 PM, Eelco Dolstra wrote: FWIW, this is also done by the KDE module in NixOS. Unfortunately, that doesn't help you when installing via nix-env. Lately I've been unable to run kate, even via booting into NixOS env where it used to work. I tried to clear environment, or

Re: [Nix-dev] wpa_supplicant on install image fails for me

2013-03-28 Thread Vladimír Čunát
On 03/25/2013 05:06 AM, Florian Friesdorf wrote: Is there a reason to keep the old 3.2 kernel for the installer? I would prefer some newer kernel there, too. Although 3.2 is still supported, it may miss vital drivers, which is bad for installation. For this reason I would even prefer to alway

Re: [Nix-dev] kbuildsococa4 & calligra

2013-03-28 Thread Vladimír Čunát
On 03/28/2013 06:46 AM, phree...@yandex.ru wrote: Here we go again. It isn't even about calligra or other kde apps being unable to try loading "their" versions of libs. I'm sure you can patch it somehow. KDE heavily relies on frameworks and plugins, which in practice means that KDE regularly doe

Re: [Nix-dev] 'unit' derivations

2013-03-30 Thread Vladimír Čunát
On 03/29/2013 10:55 AM, Sergey Mironov wrote: Hi, I've noticed lots of derivations called 'unit' during last update. Please explain what do they mean? It looks to me that in this case we should strive for more complete names in nix store, like display-manager-unit... Vlada smime.p7s Descr

Re: [Nix-dev] glibc-2.13 hell

2013-03-30 Thread Vladimír Čunát
On 03/30/2013 01:51 PM, Sergey Mironov wrote: Hey, I was able to fix it typing nix-env -e opera nix-env -i opera Does that mean that nix-env -u opera has different task? The problem is that nix-env -u does *not* update if the version number (of opera) is the same. In that case I use nix-env

[Nix-dev] Multiple pcre in closure

2013-04-01 Thread Vladimír Čunát
Hi, I don't understand this. I found out I've got twice pcre in some closures, which boils down to the fact that gnugrep depends on one and (probably all) others on another one. Both seem to me that use the same global pcre attribute without any changes... It's really confusing to me, but we *

Re: [Nix-dev] Current udisks failure I see

2013-04-03 Thread Vladimír Čunát
On 04/04/2013 12:24 AM, Lluís Batlle i Rossell wrote: On Thu, Apr 04, 2013 at 12:19:50AM +0200, Lluís Batlle i Rossell wrote: Anyone has an idea of what happens? Ok, I think I have it. Sometimes it takes to write a letter to find things out. :) Yes, trying to explain to someone... that is IM

[Nix-dev] Hydra is out of disk space!

2013-04-05 Thread Vladimír Čunát
Hi, I just noticed that the amount of failing builds on hydra seems to be caused by no disk space left. Vlada smime.p7s Description: S/MIME Cryptographic Signature ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mail

Re: [Nix-dev] Hydra is out of disk space!

2013-04-05 Thread Vladimír Čunát
On 04/05/2013 03:28 PM, Eelco Dolstra wrote: On 5 April 2013 10:53, Vladimír Čunát wrote: I just noticed that the amount of failing builds on hydra seems to be caused by no disk space left. Thanks. One of the machines was in fact out of inodes... Good. Is it easy to clear negative caching

Re: [Nix-dev] Hydra is out of disk space!

2013-04-05 Thread Vladimír Čunát
On 04/05/2013 10:00 PM, Vladimír Čunát wrote: Good. Is it easy to clear negative caching for some jobs? On x-updates there was a jump of about +3k fails about the time. I mean, on x-updates, there are currently 4k failing jobs, so restarting all of them shouldn't be such a deal if 3k of

Re: [Nix-dev] nix-channel can't process channel data from Hydra

2013-04-10 Thread Vladimír Čunát
On 04/10/2013 12:04 PM, Peter Simons wrote: ..., then the tarball referred to by /nix/store/n4hi4l4r5z7z5m20v9v5spwfb9xg728h-hydra-crypto.drv is broken, indeed, it's *not* a valid bz2-compressed tarball. Apparently, nix-channel downloads this file somehow differntly than my manual invocation

[Nix-dev] Hydra: summary of problems I've encountered

2013-04-10 Thread Vladimír Čunát
Hi. On 04/10/2013 03:58 PM, Eelco Dolstra wrote: The "gnucash" job no longer exist, instead there are now jobs named "gnucash.i686-linux" and so on. A side note: you remind me some problems I've encountered with hydra.nixos.org. - The "job status" tab now makes less sense. There's a table,

<    1   2   3   4   5   6   7   8   9   10   >