2021-03-15 14:24:25 +01:00
|
|
|
{ mkDerivation, fetchurl, lib
|
2018-06-25 06:48:53 +02:00
|
|
|
, extra-cmake-modules, kdoctools
|
|
|
|
, qca-qt5, qjson, qtquickcontrols2, qtscript, qtwebengine
|
|
|
|
, karchive, kcmutils, kconfig, kdnssd, kguiaddons, kinit, kirigami2, knewstuff, knotifyconfig, ktexteditor, kwindowsystem
|
|
|
|
, fftw, phonon, plasma-framework, threadweaver
|
2021-04-27 13:35:04 +02:00
|
|
|
, curl, ffmpeg, gdk-pixbuf, libaio, liblastfm, libmtp, loudmouth, lzo, lz4, mysql57, pcre, snappy, taglib, taglib_extras
|
2018-06-25 06:48:53 +02:00
|
|
|
}:
|
|
|
|
|
2019-09-05 15:05:05 +02:00
|
|
|
mkDerivation rec {
|
2021-03-15 14:24:25 +01:00
|
|
|
pname = "amarok";
|
|
|
|
version = "2.9.71";
|
2018-06-25 06:48:53 +02:00
|
|
|
|
2021-03-15 14:24:25 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kde/unstable/${pname}/${version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "0kz8wixjmy4yxq2gk11ybswryxb6alfymd3bzcar9xinscllhh3a";
|
2018-06-25 06:48:53 +02:00
|
|
|
};
|
|
|
|
|
2021-03-29 17:27:13 +02:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2018-06-25 06:48:53 +02:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
qca-qt5 qjson qtquickcontrols2 qtscript qtwebengine
|
|
|
|
karchive kcmutils kconfig kdnssd kguiaddons kinit kirigami2 knewstuff knotifyconfig ktexteditor kwindowsystem
|
|
|
|
phonon plasma-framework threadweaver
|
2021-04-27 13:35:04 +02:00
|
|
|
curl fftw ffmpeg gdk-pixbuf libaio liblastfm libmtp loudmouth lz4 lzo mysql57.server mysql57.server.static
|
2018-06-25 06:48:53 +02:00
|
|
|
pcre snappy taglib taglib_extras
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2019-11-10 08:04:36 +01:00
|
|
|
homepage = "https://amarok.kde.org";
|
|
|
|
description = "A powerful music player with an intuitive interface";
|
2021-03-15 14:24:25 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-06-25 06:48:53 +02:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
|
|
|
}
|