2024-06-05 15:53:02 +00:00
|
|
|
{ stdenv, fetchurl, lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, extra-cmake-modules, kdoctools
|
|
|
|
, qca-qt5, qjson, qtquickcontrols2, qtscript, qtwebengine
|
|
|
|
, karchive, kcmutils, kconfig, kdnssd, kguiaddons, kinit, kirigami2, knewstuff, knotifyconfig, ktexteditor, kwindowsystem
|
2024-06-05 15:53:02 +00:00
|
|
|
, fftw, phonon, plasma-framework, threadweaver, breeze-icons, wrapQtAppsHook
|
2022-10-30 15:09:59 +00:00
|
|
|
, curl, ffmpeg, gdk-pixbuf, libaio, liblastfm, libmtp, loudmouth, lzo, lz4, mariadb-embedded, pcre, snappy, taglib, taglib_extras
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2021-03-16 09:55:35 +00:00
|
|
|
pname = "amarok";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "3.1.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-03-16 09:55:35 +00:00
|
|
|
src = fetchurl {
|
2024-06-05 15:53:02 +00:00
|
|
|
url = "mirror://kde/stable/amarok/${finalAttrs.version}/amarok-${finalAttrs.version}.tar.xz";
|
2024-09-19 14:19:46 +00:00
|
|
|
sha256 = "sha256-yXuZZ/qPFbjp9N+2YYTKxqfsncZloQW8UWjY5yD+Fus=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapQtAppsHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
qca-qt5 qjson qtquickcontrols2 qtscript qtwebengine
|
|
|
|
karchive kcmutils kconfig kdnssd kguiaddons kinit kirigami2 knewstuff knotifyconfig ktexteditor kwindowsystem
|
|
|
|
phonon plasma-framework threadweaver
|
2022-10-30 15:09:59 +00:00
|
|
|
curl fftw ffmpeg gdk-pixbuf libaio liblastfm libmtp loudmouth lz4 lzo mariadb-embedded
|
2022-10-21 18:38:19 +00:00
|
|
|
pcre snappy taglib taglib_extras breeze-icons
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://amarok.kde.org";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Powerful music player with an intuitive interface";
|
2021-03-16 09:55:35 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
2024-06-05 15:53:02 +00:00
|
|
|
})
|