[Nix-commits] SVN commit: nix - r31926 - in nixpkgs/trunk/pkgs/os-specific/windows: mingwrt w32api

2012-01-30 Thread Ludovic Courtès
Author: ludo Date: Mon Jan 30 09:53:39 2012 New Revision: 31926 URL: https://nixos.org/websvn/nix/?rev=31926sc=1 Log: MinGW 3.20, and w32api 3.17-2. Modified: nixpkgs/trunk/pkgs/os-specific/windows/mingwrt/default.nix nixpkgs/trunk/pkgs/os-specific/windows/w32api/default.nix Modified:

[Nix-commits] SVN commit: nix - r31927 - in nixpkgs/trunk/pkgs: os-specific/windows/pthread-w32 top-level

2012-01-30 Thread Ludovic Courtès
Author: ludo Date: Mon Jan 30 09:53:45 2012 New Revision: 31927 URL: https://nixos.org/websvn/nix/?rev=31927sc=1 Log: Add pthreads-w32. Added: nixpkgs/trunk/pkgs/os-specific/windows/pthread-w32/ nixpkgs/trunk/pkgs/os-specific/windows/pthread-w32/default.nix Modified:

[Nix-commits] SVN commit: nix - r31930 - nixpkgs/trunk/pkgs/development/libraries/haskell/Chart

2012-01-30 Thread Peter Simons
Author: simons Date: Mon Jan 30 10:52:07 2012 New Revision: 31930 URL: https://nixos.org/websvn/nix/?rev=31930sc=1 Log: haskell-Chart: updated to version 0.15 Modified: nixpkgs/trunk/pkgs/development/libraries/haskell/Chart/default.nix Modified:

[Nix-commits] SVN commit: nix - r31931 - nixpkgs/trunk/pkgs/development/libraries/haskell/hledger-chart

2012-01-30 Thread Peter Simons
Author: simons Date: Mon Jan 30 10:52:10 2012 New Revision: 31931 URL: https://nixos.org/websvn/nix/?rev=31931sc=1 Log: haskell-hledger-chart: updated to version 0.16.1 Modified: nixpkgs/trunk/pkgs/development/libraries/haskell/hledger-chart/default.nix Modified:

[Nix-commits] SVN commit: nix - r31934 - in nixpkgs/trunk/pkgs: tools/system/hardlink top-level

2012-01-30 Thread Peter Simons
Author: simons Date: Mon Jan 30 11:40:20 2012 New Revision: 31934 URL: https://nixos.org/websvn/nix/?rev=31934sc=1 Log: hardlink: initial version Hardlink consolidates duplicate files in a directory hierarchy with hardlinks, similar to nix-store --optimise. IHMO, this program should be run by

Re: [Nix-dev] cleaning /tmp

2012-01-30 Thread Eelco Dolstra
Hi, On 30/01/12 12:54, Florian Friesdorf wrote: services.cleanTmp.paths = [ '/tmp' '/var/tmp' ] (default) services.cleanTmp.onBoot = true; The FHS says: Files and directories located in /var/tmp must not be deleted when the system is booted. Although data stored in /var/tmp is typically

Re: [Nix-dev] [Nix-commits] SVN commit: nix - r31934 - in nixpkgs/trunk/pkgs: tools/system/hardlink top-level

2012-01-30 Thread Eelco Dolstra
Hi, On 30/01/12 12:40, Peter Simons wrote: IHMO, this program should be run by the default builder after $out has been set up, to remove redundancy in the generated closures. No, Nix should do that after the build has completed. If the Nix DB were to store the cryptographic hash of every

Re: [Nix-dev] cleaning /tmp

2012-01-30 Thread Florian Friesdorf
On Mon, 30 Jan 2012 13:08:28 +0100, Eelco Dolstra e.dols...@tudelft.nl wrote: Hi, On 30/01/12 12:54, Florian Friesdorf wrote: services.cleanTmp.paths = [ '/tmp' '/var/tmp' ] (default) service.cleanTmp.paths = [ '/tmp' ] (default) services.cleanTmp.onBoot = true; The FHS says:

Re: [Nix-dev] cleaning /tmp

2012-01-30 Thread Marc Weber
Can we compare the solution add nixos option to adding a recipes wiki page adding such one liners as samples? Marc Weber ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] udisks, autoreconf, r31679

2012-01-30 Thread Yury G. Kudryashov
Ludovic Courtès wrote: Hi, Yury G. Kudryashov urkud.ur...@gmail.com skribis: Why `automake` was not enough for udisks? Why do we need full autoreconf? It’s rarely a good idea to run just ‘automake’, or ‘autoreconf’, or ‘libtoolize’, etc. There are inter-dependencies among these

[Nix-commits] SVN commit: nix - r31937 - in nixpkgs/trunk/pkgs/development/libraries: ffmpeg libvpx x264

2012-01-30 Thread Lluís Batlle
Author: viric Date: Mon Jan 30 21:02:08 2012 New Revision: 31937 URL: https://nixos.org/websvn/nix/?rev=31937sc=1 Log: Updating ffmpeg/x264/vpx Modified: nixpkgs/trunk/pkgs/development/libraries/ffmpeg/default.nix nixpkgs/trunk/pkgs/development/libraries/libvpx/default.nix

Re: [Nix-dev] udisks, autoreconf, r31679

2012-01-30 Thread Ludovic Courtès
Hi Yury, Yury G. Kudryashov urkud.ur...@gmail.com skribis: P.S.: I'll try to push this change upstream once more. If I'll fail, I'll rewrite the patch in the form that (a) cannot be submitted upstream; but (b) doesn't need autoreconf. I’m all for this actually. I think I was just

Re: [Nix-dev] [Nix-commits] SVN commit: nix - r31936 - in nixpkgs/trunk/pkgs: tools/misc/cowsay top-level

2012-01-30 Thread Eelco Dolstra
Hi, On 01/30/2012 08:05 PM, Rob Vermaas wrote: + name = cowsay-3.03; Could you add a meta.description attribute please? I'm intrigued by things that have warez in the URL :-) -- Eelco Dolstra | http://www.st.ewi.tudelft.nl/~dolstra/ ___ nix-dev

Re: [Nix-dev] [Nix-commits] SVN commit: nix - r31934 - in nixpkgs/trunk/pkgs: tools/system/hardlink top-level

2012-01-30 Thread Shea Levy
On 1/30/12 7:10 AM, Eelco Dolstra wrote: Hi, On 30/01/12 12:40, Peter Simons wrote: IHMO, this program should be run by the default builder after $out has been set up, to remove redundancy in the generated closures. No, Nix should do that after the build has completed. If the Nix DB were

[Nix-commits] SVN commit: nix - r31938 - nixpkgs/trunk/pkgs/tools/misc/cowsay

2012-01-30 Thread Rob Vermaas
Author: rob Date: Tue Jan 31 06:59:02 2012 New Revision: 31938 URL: https://nixos.org/websvn/nix/?rev=31938sc=1 Log: add meta attribute for cowsay Modified: nixpkgs/trunk/pkgs/tools/misc/cowsay/default.nix Modified: nixpkgs/trunk/pkgs/tools/misc/cowsay/default.nix

Re: [Nix-dev] [Nix-commits] SVN commit: nix - r31934 - in nixpkgs/trunk/pkgs: tools/system/hardlink top-level

2012-01-30 Thread Yury G. Kudryashov
Eelco Dolstra wrote: Hi, On 30/01/12 12:40, Peter Simons wrote: IHMO, this program should be run by the default builder after $out has been set up, to remove redundancy in the generated closures. No, Nix should do that after the build has completed. If the Nix DB were to store the