about summary refs log tree commit diff
path: root/pkgs/applications/audio/amarok
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2017-12-22 14:37:04 +0300
committergnidorah <gnidorah@users.noreply.github.com>2017-12-22 15:19:11 +0300
commit6c317b62a3b8eb5007b7655640309441b449dd7b (patch)
tree0b76b5f28182a70ca0ee70ef7b38280ff4d687c2 /pkgs/applications/audio/amarok
parent8a1525833a39e70d27f48a3edd0a969a1c8bfca0 (diff)
downloadnixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.tar
nixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.tar.gz
nixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.tar.bz2
nixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.tar.lz
nixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.tar.xz
nixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.tar.zst
nixlib-6c317b62a3b8eb5007b7655640309441b449dd7b.zip
amarok-kde4: drop
Diffstat (limited to 'pkgs/applications/audio/amarok')
-rw-r--r--pkgs/applications/audio/amarok/default.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix
deleted file mode 100644
index 022e33991f98..000000000000
--- a/pkgs/applications/audio/amarok/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ stdenv, fetchurl, lib, automoc4, cmake, perl, pkgconfig
-, qtscriptgenerator, gettext, curl , libxml2, mysql, taglib
-, taglib_extras, loudmouth , kdelibs4, qca2, libmtp, liblastfm, libgpod
-, phonon , strigi, soprano, qjson, ffmpeg, libofa, nepomuk_core ? null
-, lz4, lzo, snappy, libaio, pcre
-}:
-
-stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
-
-  pname = "amarok";
-  version = "2.8.0";
-
-  src = fetchurl {
-    url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
-    sha256 = "1ilf9wdp3wna5pmvxill8x08rb9gw86qkc2zwm3xk9hpy8l9pf7l";
-  };
-
-  QT_PLUGIN_PATH="${qtscriptgenerator}/lib/qt4/plugins";
-
-  nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
-
-  buildInputs = [
-    qtscriptgenerator stdenv.cc.libc gettext curl libxml2 mysql.server/*libmysqld*/
-    taglib taglib_extras loudmouth kdelibs4 phonon strigi soprano qca2
-    libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core
-    lz4 lzo snappy libaio pcre
-  ];
-
-  # This is already fixed upstream, will be release in 2.9
-  preConfigure = ''
-    sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/modules/FindTaglib.cmake
-  '';
-
-  cmakeFlags = "-DKDE4_BUILD_TESTS=OFF";
-
-  enableParallelBuilding = true;
-
-  propagatedUserEnvPkgs = [ qtscriptgenerator ];
-
-  meta = {
-    repositories.git = git://anongit.kde.org/amarok.git;
-    description = "Popular music player for KDE";
-    license = "GPL";
-    homepage = https://amarok.kde.org;
-    inherit (kdelibs4.meta) platforms;
-  };
-}