summary refs log tree commit diff
path: root/pkgs/applications/audio/amarok
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-10-14 14:40:58 +0800
committerPeter Hoeg <peter@hoeg.com>2017-10-14 14:42:49 +0800
commit72d8eeea88d5b37bff179d6dbb3164f72bddca7e (patch)
treec7d228b26a3c9d9051cbfe7da0703b525cd76174 /pkgs/applications/audio/amarok
parent8df1c9ac175d72c0c18ede3d22764ece9dceeeef (diff)
downloadnixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.tar
nixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.tar.gz
nixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.tar.bz2
nixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.tar.lz
nixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.tar.xz
nixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.tar.zst
nixpkgs-72d8eeea88d5b37bff179d6dbb3164f72bddca7e.zip
Revert "amarok-kf5: init at 2.8.91-20170228"
This reverts commit fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.
Diffstat (limited to 'pkgs/applications/audio/amarok')
-rw-r--r--pkgs/applications/audio/amarok/kf5.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/applications/audio/amarok/kf5.nix b/pkgs/applications/audio/amarok/kf5.nix
deleted file mode 100644
index a96aa3ed65d..00000000000
--- a/pkgs/applications/audio/amarok/kf5.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ mkDerivation, fetchgit, lib
-, extra-cmake-modules, kdoctools
-, qca-qt5, qjson, qtscript, qtwebkit
-, kcmutils, kconfig, kdelibs4support, kdnssd, kinit, knewstuff, knotifyconfig, ktexteditor
-, phonon, plasma-framework, threadweaver
-, curl, ffmpeg, gdk_pixbuf, libaio, libmtp, loudmouth, lzo, lz4, mariadb, pcre, snappy, taglib, taglib_extras
-}:
-
-let
-  pname = "amarok";
-  version = "2.8.91-20170228";
-
-in mkDerivation {
-  name = "${pname}-${version}";
-
-  src = fetchgit {
-    url    = git://anongit.kde.org/amarok.git;
-    # go back to the KDE mirror when kf5 is merged into master
-    # url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
-    rev    = "323e2d5b43245c4c06e0b83385d37ef0d32920cb";
-    sha256 = "05w7kl6qfmkjz0y1bhgkkbmsqdll30bkjd6npkzvivrvp7dplmbh";
-  };
-
-  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
-  propagatedBuildInputs = [
-    qca-qt5 qjson qtscript qtwebkit
-    kcmutils kconfig kdelibs4support kdnssd kinit knewstuff knotifyconfig ktexteditor
-    phonon plasma-framework threadweaver
-    curl ffmpeg gdk_pixbuf libaio libmtp loudmouth lz4 lzo mariadb pcre snappy taglib taglib_extras
-  ];
-  enableParallelBuilding = true;
-
-  meta = with lib; {
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ peterhoeg ];
-  };
-}