summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-06-01 20:49:38 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-06-02 21:25:04 +0100
commitb6e384732e34008e37d0b48fffed7d0dc0880621 (patch)
tree7fedb47945355d56073b82b5a7e8111f7d8fb4a5 /pkgs
parent919b39bb7c70a99b090b8e3debde5addc736c469 (diff)
downloadnixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.tar
nixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.tar.gz
nixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.tar.bz2
nixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.tar.lz
nixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.tar.xz
nixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.tar.zst
nixpkgs-b6e384732e34008e37d0b48fffed7d0dc0880621.zip
resilio-sync: cosmetic changes
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/resilio-sync/default.nix28
1 files changed, 13 insertions, 15 deletions
diff --git a/pkgs/applications/networking/resilio-sync/default.nix b/pkgs/applications/networking/resilio-sync/default.nix
index 706bc7841ca..7622cb76ad2 100644
--- a/pkgs/applications/networking/resilio-sync/default.nix
+++ b/pkgs/applications/networking/resilio-sync/default.nix
@@ -5,22 +5,18 @@ let
     "x86_64-linux" = "x64";
     "i686-linux" = "i386";
   }.${stdenv.system};
-  sha256s = {
-    "x86_64-linux" = "15gji5zqs1py92bpwvvq0r1spl0yynbrsnh4ajphwq17bqys3192";
-    "i686-linux"   = "1y67bd63b95va7g2676rgp2clvcy09pnmivy00r2w46y7kwwwbj8";
-  };
   libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
-in
 
-stdenv.mkDerivation rec {
+in stdenv.mkDerivation rec {
   name = "resilio-sync-${version}";
   version = "2.5.2";
 
   src = fetchurl {
-    urls = [
-      "https://download-cdn.resilio.com/${version}/linux-${arch}/resilio-sync_${arch}.tar.gz"
-    ];
-    sha256 = sha256s.${stdenv.system};
+    url = "https://download-cdn.resilio.com/${version}/linux-${arch}/resilio-sync_${arch}.tar.gz";
+    sha256 = {
+      "x86_64-linux" = "15gji5zqs1py92bpwvvq0r1spl0yynbrsnh4ajphwq17bqys3192";
+      "i686-linux"   = "1y67bd63b95va7g2676rgp2clvcy09pnmivy00r2w46y7kwwwbj8";
+    }.${stdenv.system};
   };
 
   dontStrip = true; # Don't strip, otherwise patching the rpaths breaks
@@ -28,14 +24,16 @@ stdenv.mkDerivation rec {
 
   installPhase = ''
     install -D rslsync "$out/bin/rslsync"
-    patchelf --interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" --set-rpath ${libPath} "$out/bin/rslsync"
+    patchelf \
+      --interpreter "$(< $NIX_CC/nix-support/dynamic-linker)" \
+      --set-rpath ${libPath} "$out/bin/rslsync"
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Automatically sync files via secure, distributed technology";
     homepage    = https://www.resilio.com/;
-    license     = stdenv.lib.licenses.unfreeRedistributable;
-    platforms   = stdenv.lib.platforms.linux;
-    maintainers = with stdenv.lib.maintainers; [ domenkozar thoughtpolice cwoac ];
+    license     = licenses.unfreeRedistributable;
+    platforms   = platforms.linux;
+    maintainers = with maintainers; [ domenkozar thoughtpolice cwoac ];
   };
 }