nixpkgs/pkgs/applications/audio/amarok/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.4 KiB
Nix
Raw Normal View History

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