Commit cb9fc545 authored by zendo's avatar zendo
Browse files

libsForQt5.juk: init at 22.08.3

parent 85d6b399
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}