[Nix-commits] SVN commit: nix - r33391 - nixpkgs/trunk/pkgs/applications/office/calligra

2012-03-24 Thread Yury G. Kudryashov
Author: urkud Date: Sat Mar 24 06:35:16 2012 New Revision: 33391 URL: https://nixos.org/websvn/nix/?rev=33391sc=1 Log: Calligra-2.4 RC2 Blind commit. Let Hydra build it. Modified: nixpkgs/trunk/pkgs/applications/office/calligra/default.nix Modified:

[Nix-commits] SVN commit: nix - r33394 - in nixpkgs/trunk/pkgs: development/libraries/haskell/OpenAL development/libraries/haskell/unbound development/tools/haskell/cabal2nix games/LambdaHack

2012-03-24 Thread Peter Simons
Author: simons Date: Sat Mar 24 10:21:48 2012 New Revision: 33394 URL: https://nixos.org/websvn/nix/?rev=33394sc=1 Log: Updated Haskell packages. - LambdaHack: updated to version 0.2.1 - OpenAL: updated to version 1.4.0.1 - cabal2nix: updated to version 1.29 - unbound: updated to version

Re: [Nix-dev] Review Request: Adds memcached server to nixpkgs

2012-03-24 Thread Yury Kudryashov
--- This is an automatically generated e-mail. To reply, visit: http://reviewboard.loegria.net/r/15/#review17 --- nixpkgs/trunk/pkgs/servers/memcached/default.nix

[Nix-commits] SVN commit: nix - r33395 - in nixpkgs/trunk/pkgs: applications/audio/petrifoo top-level

2012-03-24 Thread Cillian de Roiste
Author: cillian Date: Sat Mar 24 13:22:14 2012 New Revision: 33395 URL: https://nixos.org/websvn/nix/?rev=33395sc=1 Log: Adding Petri-Foo, a fork of the Specimen sampler project Added: nixpkgs/trunk/pkgs/applications/audio/petrifoo/

[Nix-commits] SVN commit: nix - r33396 - nixpkgs/trunk/pkgs/applications/audio/specimen

2012-03-24 Thread Cillian de Roiste
Author: cillian Date: Sat Mar 24 18:08:34 2012 New Revision: 33396 URL: https://nixos.org/websvn/nix/?rev=33396sc=1 Log: Removing the obsolete specimen folder (replaced by petrifoo) Deleted: nixpkgs/trunk/pkgs/applications/audio/specimen/ ___

Re: [Nix-dev] NFS patches (idmapd etc)

2012-03-24 Thread Rickard Nilsson
Den 2012-03-23 14:18:06 skrev Lluís Batlle i Rossell vi...@viric.name: On Thu, Mar 22, 2012 at 03:20:46PM +0100, Eelco Dolstra wrote: On 22/03/12 14:02, Lluís Batlle i Rossell wrote: It is still broken, right? The test passed for me, but there still seems to be some random race

[Nix-commits] SVN commit: nix - r33397 - in nixpkgs/trunk/pkgs: applications/audio/mhwaveedit top-level

2012-03-24 Thread Cillian de Roiste
Author: cillian Date: Sat Mar 24 18:59:26 2012 New Revision: 33397 URL: https://nixos.org/websvn/nix/?rev=33397sc=1 Log: Adding mhwaveedit, a sample editor Added: nixpkgs/trunk/pkgs/applications/audio/mhwaveedit/ nixpkgs/trunk/pkgs/applications/audio/mhwaveedit/default.nix Modified:

[Nix-commits] SVN commit: nix - r33398 - nixpkgs/trunk/pkgs/applications/video/vlc

2012-03-24 Thread Cillian de Roiste
Author: cillian Date: Sat Mar 24 19:52:46 2012 New Revision: 33398 URL: https://nixos.org/websvn/nix/?rev=33398sc=1 Log: Upgrading to 2.0.1, bugfix for smb error. Thanks to Kirill Elagin Modified: nixpkgs/trunk/pkgs/applications/video/vlc/default.nix Modified:

Re: [Nix-dev] where did ocaml 3.11 go?

2012-03-24 Thread Arie Middelkoop
On 17-03-12 16:24, Eelco Dolstra wrote: On 17/03/12 15:17, Arie Middelkoop wrote: It seems that OCaml 3.11 has disappeared from nixpkgs after the big stdenv update a week ago? I'm actually using that version of OCaml for testing purposes. If I remember correctly, I removed it because it

[Nix-commits] SVN commit: nix - r33399 - in nixpkgs/trunk/pkgs: development/compilers/ocaml top-level

2012-03-24 Thread Arie Middelkoop
Author: amiddelk Date: Sat Mar 24 22:59:08 2012 New Revision: 33399 URL: https://nixos.org/websvn/nix/?rev=33399sc=1 Log: Recovered OCaml 3.11 by using version 3.11.2 and a patch from ocaml's bugtracker. Added: nixpkgs/trunk/pkgs/development/compilers/ocaml/3.11.2.nix - copied, changed

Re: [Nix-dev] with, ++, //, and laziness

2012-03-24 Thread Nicolas Pierron
Hi Shea, On Fri, Mar 23, 2012 at 11:01, Shea Levy s...@shealevy.com wrote: Based on my understanding of Nix semantics, I expected the following to all evaluate to 2: let   a = { c = 1; d = b.c; };   b = a // { c = 2; }; in b.d a let is like arec { … } rec { a = LAZY { c = 1; d =