summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2018-07-05 08:33:42 -0400
committerTim Steinbach <tim@nequissimus.com>2018-07-05 08:33:56 -0400
commit0a218b959e19f95d94bf536a306428ddfdfcb4ba (patch)
treebb6626451d720d4bc13657f8e3df355f7f890766 /pkgs
parent88a183f5742e6776bed1d87625756ee6d82366cf (diff)
downloadnixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.tar
nixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.tar.gz
nixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.tar.bz2
nixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.tar.lz
nixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.tar.xz
nixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.tar.zst
nixpkgs-0a218b959e19f95d94bf536a306428ddfdfcb4ba.zip
hipchat: 4.30.4.1672 -> 4.30.5.1676
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/instant-messengers/hipchat/default.nix22
1 files changed, 6 insertions, 16 deletions
diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
index dd1ce2264d5..ac00fb7bbd3 100644
--- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix
+++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
@@ -3,8 +3,7 @@
 , libGL, xcbutilkeysyms, xdg_utils, libtool }:
 
 let
-
-  version = "4.30.4.1672";
+  version = "4.30.5.1676";
 
   rpath = stdenv.lib.makeLibraryPath [
     xdg_utils
@@ -39,22 +38,13 @@ let
     systemd
     libGL
   ] + ":${stdenv.cc.cc.lib}/lib64";
-
-  src =
-    if stdenv.system == "x86_64-linux" then
-      fetchurl {
-        url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb";
-        sha256 = "1xrwndhbyhcmjcg8h1ib8lp1g51f7jxdhc6p7776zmhlfw94n3rx";
-      }
-    else
-      throw "HipChat is not supported on ${stdenv.system}";
-
-in
-
-stdenv.mkDerivation {
+in stdenv.mkDerivation {
   name = "hipchat-${version}";
 
-  inherit src;
+  src = fetchurl {
+    url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb";
+    sha256 = "1fmvarq7zf1cnah2d1l7rxhbiw3dmjcxsldys5is63y204hdh04y";
+  };
 
   buildInputs = [ makeWrapper ];