Merge pull request #201571 from zendo/juk
This commit is contained in:
commit
18c73bcf94
@ -93,6 +93,7 @@ let
|
||||
grantleetheme = callPackage ./grantleetheme {};
|
||||
gwenview = callPackage ./gwenview.nix {};
|
||||
incidenceeditor = callPackage ./incidenceeditor.nix {};
|
||||
juk = callPackage ./juk.nix {};
|
||||
k3b = callPackage ./k3b.nix {};
|
||||
kaccounts-integration = callPackage ./kaccounts-integration.nix {};
|
||||
kaccounts-providers = callPackage ./kaccounts-providers.nix {};
|
||||
|
37
pkgs/applications/kde/juk.nix
Normal file
37
pkgs/applications/kde/juk.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ 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";
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ zendo ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user