about summary refs log tree commit diff
path: root/pkgs/applications/networking/seafile-client
diff options
context:
space:
mode:
authorMoritz Maxeiner <moritz@ucworks.org>2014-02-28 17:06:18 +0100
committerMoritz Maxeiner <moritz@ucworks.org>2014-02-28 17:06:18 +0100
commit0fef1c502b3de6e28596308e5e6208a8ea1e3f71 (patch)
treebfbe54e1ca11975ca67fd0bb51747c49cabb03cd /pkgs/applications/networking/seafile-client
parent3d7010b5b70cf9008da986874a76231a37708ffb (diff)
Add indentation for multi-line strings in seafile-client expression
Diffstat (limited to 'pkgs/applications/networking/seafile-client')
-rw-r--r--pkgs/applications/networking/seafile-client/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/networking/seafile-client/default.nix b/pkgs/applications/networking/seafile-client/default.nix
index 82e5d08da4138..4ab0a9f80690c 100644
--- a/pkgs/applications/networking/seafile-client/default.nix
+++ b/pkgs/applications/networking/seafile-client/default.nix
@@ -14,19 +14,19 @@ stdenv.mkDerivation rec
   buildInputs = [ pkgconfig cmake qt4 seafile-shared makeWrapper ];
 
   builder = writeScript "${name}-builder.sh" ''
-  source $stdenv/setup
+    source $stdenv/setup
 
-  tar xvfz $src
-  cd seafile-client-*
+    tar xvfz $src
+    cd seafile-client-*
 
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_INSTALL_PREFIX="$out" .
-  make -j1
+    cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_BUILD_RPATH=ON -DCMAKE_INSTALL_PREFIX="$out" .
+    make -j1
 
-  make install
+    make install
 
-  wrapProgram $out/bin/seafile-applet \
-    --suffix PATH : ${ccnet}/bin:${seafile-shared}/bin
-  '';
+    wrapProgram $out/bin/seafile-applet \
+      --suffix PATH : ${ccnet}/bin:${seafile-shared}/bin
+    '';
 
   meta =
   {