about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-05-18 16:33:33 -0500
committerAustin Seipp <aseipp@pobox.com>2014-05-18 16:33:33 -0500
commit3d32e49058f4830baa9ddb0b1cba46f02ed048b0 (patch)
treef3696c2b0f2ed3c21e69b714e5b0f9f318eb1a4f /pkgs/applications/networking
parentde96d252942d42129d2f177d0917ef870c93ff3d (diff)
downloadnixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.tar
nixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.tar.gz
nixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.tar.bz2
nixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.tar.lz
nixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.tar.xz
nixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.tar.zst
nixlib-3d32e49058f4830baa9ddb0b1cba46f02ed048b0.zip
btsync: fix my stupidity
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/bittorrentsync/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/bittorrentsync/default.nix b/pkgs/applications/networking/bittorrentsync/default.nix
index c0a07e1e7ce7..abb94a32bd71 100644
--- a/pkgs/applications/networking/bittorrentsync/default.nix
+++ b/pkgs/applications/networking/bittorrentsync/default.nix
@@ -5,8 +5,8 @@ let
     else if stdenv.system == "i686-linux" then "i386"
     else throw "Bittorrent Sync for: ${stdenv.system} not supported!";
 
-  sha256 = if stdenv.system == "x86_64-linux" then "1xba0wv45w4kg84i5sywkfk44vj9wxkr7f1vga2mpz86j8vq25iy";
-    else if stdenv.system == "i686-linux" then "10ml1wclix9236zcb4mh60hdm9vvfaarlb62z7fdrwk6ikqbm7fk";
+  sha256 = if stdenv.system == "x86_64-linux" then "1xba0wv45w4kg84i5sywkfk44vj9wxkr7f1vga2mpz86j8vq25iy"
+    else if stdenv.system == "i686-linux" then "10ml1wclix9236zcb4mh60hdm9vvfaarlb62z7fdrwk6ikqbm7fk"
     else throw "Bittorrent Sync for: ${stdenv.system} not supported!";
 
   libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];