Merge pull request #201571 from zendo/juk

authored by

Sandro and committed by
GitHub
18c73bcf 5d99295f

+38
+1
pkgs/applications/kde/default.nix
··· 93 93 grantleetheme = callPackage ./grantleetheme {}; 94 94 gwenview = callPackage ./gwenview.nix {}; 95 95 incidenceeditor = callPackage ./incidenceeditor.nix {}; 96 + juk = callPackage ./juk.nix {}; 96 97 k3b = callPackage ./k3b.nix {}; 97 98 kaccounts-integration = callPackage ./kaccounts-integration.nix {}; 98 99 kaccounts-providers = callPackage ./kaccounts-providers.nix {};
+37
pkgs/applications/kde/juk.nix
··· 1 + { lib 2 + , mkDerivation 3 + , extra-cmake-modules 4 + , wrapQtAppsHook 5 + , kdoctools 6 + , kcoreaddons 7 + , kxmlgui 8 + , kio 9 + , phonon 10 + , taglib 11 + }: 12 + 13 + mkDerivation { 14 + pname = "juk"; 15 + 16 + nativeBuildInputs = [ 17 + extra-cmake-modules 18 + wrapQtAppsHook 19 + kdoctools 20 + ]; 21 + 22 + buildInputs = [ 23 + kcoreaddons 24 + kxmlgui 25 + kio 26 + phonon 27 + taglib 28 + ]; 29 + 30 + meta = with lib; { 31 + homepage = "https://invent.kde.org/multimedia/juk"; 32 + description = "Audio jukebox app, supporting collections of MP3, Ogg Vorbis and FLAC audio files"; 33 + license = licenses.gpl2Only; 34 + platforms = platforms.linux; 35 + maintainers = with maintainers; [ zendo ]; 36 + }; 37 + }