From ba20e223f160041b0fcf99c7a1a4314b7756e1c9 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
Date: Tue, 22 Feb 2005 21:15:13 +0000
Subject: [PATCH] * Use a hash over the entire SVN exported tree.

svn path=/nixpkgs/trunk/; revision=2279
---
 pkgs/build-support/fetchsvn/default.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pkgs/build-support/fetchsvn/default.nix b/pkgs/build-support/fetchsvn/default.nix
index 131dd5d756c2..dd8f7b41f781 100644
--- a/pkgs/build-support/fetchsvn/default.nix
+++ b/pkgs/build-support/fetchsvn/default.nix
@@ -9,6 +9,7 @@ stdenv.mkDerivation {
   id = md5;
 
   outputHashAlgo = "md5";
+  outputHashMode = "recursive";
   outputHash = md5;
   
   inherit url rev;