about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-10-27 13:25:44 +0100
committerGitHub <noreply@github.com>2019-10-27 13:25:44 +0100
commita2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca (patch)
treea91bcea30c3f21a7f2dfcd8feca085659c63ebf8 /pkgs/applications
parent4a7bb2872b8fd800d3b1f8f6dcc10890e54860e9 (diff)
parenta3a782ec5f7c5515cb0faecf4c09d0eb14888f50 (diff)
downloadnixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.tar
nixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.tar.gz
nixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.tar.bz2
nixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.tar.lz
nixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.tar.xz
nixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.tar.zst
nixlib-a2f50c02cc7a9da6e72bdd77ca6e6796f3cc86ca.zip
Merge pull request #72082 from JohnAZoidberg/remove-taglib_1_9
 taglib_1_9, tomahawk:Remove unmaintained packages
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/tomahawk/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix
deleted file mode 100644
index c983123ca383..000000000000
--- a/pkgs/applications/audio/tomahawk/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ stdenv, fetchurl, cmake, pkgconfig, attica, boost, gnutls, libechonest
-, liblastfm, lucenepp, phonon, phonon-backend-vlc, qca2, qjson, qt4
-, qtkeychain, quazip, sparsehash, taglib, websocketpp, makeWrapper
-
-, enableXMPP      ? true,  libjreen     ? null
-, enableKDE       ? false, kdelibs4     ? null
-, enableTelepathy ? false, telepathy-qt ? null
-}:
-
-assert enableXMPP      -> libjreen     != null;
-assert enableKDE       -> kdelibs4     != null;
-assert enableTelepathy -> telepathy-qt != null;
-
-stdenv.mkDerivation rec {
-  pname = "tomahawk";
-  version = "0.8.4";
-
-  src = fetchurl {
-    url = "http://download.tomahawk-player.org/${pname}-${version}.tar.bz2";
-    sha256 = "0j84h36wkjfjbsd7ybyji7rcc9wpjdbl0f1xdcc1g7h0nz34pc0g";
-  };
-
-  cmakeFlags = [
-    "-DLUCENEPP_INCLUDE_DIR=${lucenepp}/include"
-    "-DLUCENEPP_LIBRARY_DIR=${lucenepp}/lib"
-  ];
-
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [
-    cmake attica boost gnutls libechonest liblastfm lucenepp phonon
-    qca2 qjson qt4 qtkeychain quazip sparsehash taglib websocketpp
-    makeWrapper
-  ] ++ stdenv.lib.optional enableXMPP      libjreen
-    ++ stdenv.lib.optional enableKDE       kdelibs4
-    ++ stdenv.lib.optional enableTelepathy telepathy-qt;
-
-  postInstall = let
-    pluginPath = stdenv.lib.concatStringsSep ":" [
-      "${phonon-backend-vlc}/lib/kde4/plugins"
-    ];
-  in ''
-    for i in "$out"/bin/*; do
-      wrapProgram "$i" --prefix QT_PLUGIN_PATH : "${pluginPath}"
-    done
-  '';
-
-  enableParallelBuilding = true;
-
-  meta = with stdenv.lib; {
-    description = "A multi-source music player (unmaintained)";
-    homepage = http://tomahawk-player.org/;
-    license = licenses.gpl3Plus;
-    platforms = platforms.all;
-    broken = true; # 2018-06-25
-  };
-}