summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-19 21:32:54 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-19 21:36:23 +0100
commit8871de95f5277dc88d991437ac3e782faada4846 (patch)
treebd28f68570323ed9343319df825d4a55af554e9e /pkgs/applications
parent94a47eeea1237046349e79142efebb9a67a66b69 (diff)
downloadnixlib-8871de95f5277dc88d991437ac3e782faada4846.tar
nixlib-8871de95f5277dc88d991437ac3e782faada4846.tar.gz
nixlib-8871de95f5277dc88d991437ac3e782faada4846.tar.bz2
nixlib-8871de95f5277dc88d991437ac3e782faada4846.tar.lz
nixlib-8871de95f5277dc88d991437ac3e782faada4846.tar.xz
nixlib-8871de95f5277dc88d991437ac3e782faada4846.tar.zst
nixlib-8871de95f5277dc88d991437ac3e782faada4846.zip
fuze: remove dead package
Last maintained in 2013. Building fails due to vanished sources.
Upstream has the following to say:

  “As of February 11th 2015, Fuze will no longer support a native
   Linux-based client. This means that any customers attempting to
   install or use our previous Linux client will be unable to do
   so. There are currently no plans to create an updated version
   of the Linux client for Fuze. For Linux based customers that
   still wish to use Fuze, we recommend that you try our browser
   client.” -- https://support.fuze.com/hc/en-us/articles/201527877-Does-Fuze-Support-Linux-

Never marked as broken, but has been so for quite some time.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/instant-messengers/fuze/default.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/applications/networking/instant-messengers/fuze/default.nix b/pkgs/applications/networking/instant-messengers/fuze/default.nix
deleted file mode 100644
index 33ffe87a4ffb..000000000000
--- a/pkgs/applications/networking/instant-messengers/fuze/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv, fetchurl, dpkg, openssl, alsaLib, libXext, libXfixes, libXrandr
-, libjpeg, curl, libX11, libXmu, libXv, libXtst, qt4, mesa, zlib
-, gnome, libidn, rtmpdump, c-ares, openldap, makeWrapper
-}:
-assert stdenv.system == "x86_64-linux";
-let
-  curl_custom =
-    stdenv.lib.overrideDerivation curl (args: { 
-      configureFlags = args.configureFlags ++ ["--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"] ; 
-    } );
-in
-stdenv.mkDerivation {
-  name = "fuze-1.0.5";
-  src = fetchurl {
-    url = http://apt.fuzebox.com/apt/pool/lucid/main/f/fuzelinuxclient/fuzelinuxclient_1.0.5.lucid_amd64.deb;
-    sha256 = "0gvxc8qj526cigr1lif8vdn1aawj621camkc8kvps23r7zijhnqv";
-  };
-  buildInputs = [ dpkg makeWrapper ];
-  libPath =
-    stdenv.lib.makeLibraryPath [
-      openssl alsaLib libXext libXfixes libXrandr libjpeg curl_custom
-      libX11 libXmu libXv qt4 libXtst mesa stdenv.cc.cc zlib
-      gnome.GConf libidn rtmpdump c-ares openldap
-    ];
-  buildCommand = ''
-    dpkg-deb -x $src .
-    mkdir -p $out/lib $out/bin
-    cp -R usr/lib/fuzebox $out/lib
-
-    patchelf \
-      --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
-      --set-rpath $out/lib/fuzebox:$libPath \
-      $out/lib/fuzebox/FuzeLinuxApp
-
-    wrapProgram $out/lib/fuzebox/FuzeLinuxApp --prefix LD_LIBRARY_PATH : $libPath
-    for f in $out/lib/fuzebox/*.so.*; do
-      patchelf \
-        --set-rpath $out/lib/fuzebox:$libPath \
-        $f
-    done
-
-    ln -s ${openssl}/lib/libssl.so.1.0.0 $out/lib/fuzebox/libssl.so.0.9.8
-    ln -s ${openssl}/lib/libcrypto.so.1.0.0 $out/lib/fuzebox/libcrypto.so.0.9.8
-
-    ln -s $out/lib/fuzebox/FuzeLinuxApp $out/bin/fuze
-  '';
-
-  meta = {
-    description = "Internet and mobile based unified communications solutions (Linux client)";
-    homepage = http://www.fuzebox.com;
-    license = "unknown";
-  };
-}