summary refs log tree commit diff
path: root/pkgs/build-support/release/nix-build.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-03-31 15:30:47 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-03-31 15:30:47 +0000
commitd27514cb28997dd9ed745bbf12a8d2f821acbbee (patch)
tree6868ce3deb5776f37d9963fe0784204020d6dfc5 /pkgs/build-support/release/nix-build.nix
parent9455f37ce91c1df43109eea64e8258cab0054768 (diff)
parent1f9740e01c4da98c1a49641f2313729798fafcf3 (diff)
* Sync with the trunk once more.
* Turn on everything in Hydra.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14806
Diffstat (limited to 'pkgs/build-support/release/nix-build.nix')
-rw-r--r--pkgs/build-support/release/nix-build.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/build-support/release/nix-build.nix b/pkgs/build-support/release/nix-build.nix
index f9d2351d92531..703dc07a6e44e 100644
--- a/pkgs/build-support/release/nix-build.nix
+++ b/pkgs/build-support/release/nix-build.nix
@@ -47,15 +47,6 @@ stdenv.mkDerivation (
           src=$(ls $src/tarballs/*.tar.bz2 $src/tarballs/*.tar.gz | sort | head -1)
       fi
 
-      # Hack to compress log files.  Prevents (by pointer hiding!)
-      # unnecessary dependencies.
-      startLogWrite() {
-          # Use process substitution to send the FIFO output to both
-          # stdout and bzip2.
-          bash -c "tee >(bzip2 > \"$1\".bz2) < \"$2\"" &
-          logWriterPid=$!
-      }
-
       # Set GCC flags for coverage analysis, if desired.
       if test -n "${toString doCoverageAnalysis}"; then
           export NIX_CFLAGS_COMPILE="-O0 -fprofile-arcs -ftest-coverage $NIX_CFLAGS_COMPILE"