mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
38 lines
651 B
Nix
38 lines
651 B
Nix
{ 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 ];
|
|
};
|
|
}
|