blob: dd428a0144874af195116c7ed05335f9ce7d75ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{ lib
, mkDerivation
, extra-cmake-modules
, wrapQtAppsHook
, kdoctools
, kcoreaddons
, kxmlgui
, kio
, phonon
, taglib
}:
mkDerivation {
pname = "juk";
nativeBuildInputs = [
extra-cmake-modules
wrapQtAppsHook
kdoctools
];
buildInputs = [
kcoreaddons
kxmlgui
kio
phonon
taglib
];
meta = with lib; {
homepage = "https://invent.kde.org/multimedia/juk";
description = "Audio jukebox app, supporting collections of MP3, Ogg Vorbis and FLAC audio files";
mainProgram = "juk";
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ zendo ];
};
}
|