summary refs log tree commit diff
path: root/pkgs/applications/audio/amarok
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-06-06 16:17:03 +0800
committerPeter Hoeg <peter@hoeg.com>2017-10-14 14:38:04 +0800
commitfde0bad57796e29337e8a1f1dcbb0164f5e56b1c (patch)
tree56ea0ef8e7447aaa5a7a399c56c830295d2e89d8 /pkgs/applications/audio/amarok
parent15d2cf5494a43b0b5312a834232af9b5b62f32ca (diff)
downloadnixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.tar
nixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.tar.gz
nixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.tar.bz2
nixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.tar.lz
nixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.tar.xz
nixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.tar.zst
nixpkgs-fde0bad57796e29337e8a1f1dcbb0164f5e56b1c.zip
amarok-kf5: init at 2.8.91-20170228
Diffstat (limited to 'pkgs/applications/audio/amarok')
-rw-r--r--pkgs/applications/audio/amarok/kf5.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/audio/amarok/kf5.nix b/pkgs/applications/audio/amarok/kf5.nix
new file mode 100644
index 00000000000..a96aa3ed65d
--- /dev/null
+++ b/pkgs/applications/audio/amarok/kf5.nix
@@ -0,0 +1,37 @@
+{ 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 ];
+  };
+}