summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-08-25 06:40:26 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-08-25 06:40:26 +0000
commit88ae620570f93a37930a142c63fde6691b231042 (patch)
treead3e40ceff878318a4b5288c0f499b951f92026a /pkgs
parent8baf01155b5102dbbaa80665dfb0cb3bb08c1316 (diff)
Fix syntax error after the marking up
svn path=/nixpkgs/trunk/; revision=16851
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 515f67ba89892..769cd31cc9421 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1918,10 +1918,10 @@ let
 
   jdkdistro = installjdk: pluginSupport:
     platformPackage ["i686-linux" "x86_64-linux" "powerpc-linux"]
-    assert supportsJDK;
+    (assert supportsJDK;
     (if pluginSupport then appendToName "plugin" else x: x) (import ../development/compilers/jdk {
       inherit fetchurl stdenv unzip installjdk xlibs pluginSupport makeWrapper;
-    });
+    }));
 
   jikes = import ../development/compilers/jikes {
     inherit fetchurl stdenv;