summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-01-26 12:47:06 +0100
committerGitHub <noreply@github.com>2019-01-26 12:47:06 +0100
commit5aecdfcdfcff7840603ecb95b038414db888e081 (patch)
tree10bb40e9c77f87451956c8b0c9759104aef57c82 /pkgs
parent4506266b4ab52e06ee95449e70b73694d118966a (diff)
parenta3d97176d2f7cfb4f76ab450a433817ed099ec78 (diff)
downloadnixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.tar
nixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.tar.gz
nixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.tar.bz2
nixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.tar.lz
nixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.tar.xz
nixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.tar.zst
nixpkgs-5aecdfcdfcff7840603ecb95b038414db888e081.zip
Merge pull request #54547 from Gerschtli/update/ts3-server
teamspeak_server: 3.5.0 -> 3.5.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/teamspeak/server.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix
index 41e7db569c4..fdb3326803c 100644
--- a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix
+++ b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, makeWrapper }:
 
 let
-  version = "3.5.0";
+  version = "3.5.1";
   arch = if stdenv.is64bit then "amd64" else "x86";
   libDir = if stdenv.is64bit then "lib64" else "lib";
 in
@@ -15,8 +15,8 @@ stdenv.mkDerivation {
       "http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/teamspeak3-server_linux_${arch}-${version}.tar.bz2"
     ];
     sha256 = if stdenv.is64bit
-      then "0zk7rbi6mvs2nnsjhv4aizl5ydiyr46ng2i3lr8r78gyb88nxmcv"
-      else "0nahsmcnykgchgv50jb22fin74sab1zl8gy6m6s8mjk570qlvzzm";
+      then "0ygb867ff2fvi9n9hgs4hldpg4y012w4i1d9cx4f5mpli1xim6da"
+      else "0g1cixsldpdbfzg2vain7h3hr5j3xjdngjw66r0aqnzbx743gjzj";
   };
 
   buildInputs = [ makeWrapper ];