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.
62 lines
1,015 B
Nix
62 lines
1,015 B
Nix
{ lib
|
|
, mkDerivation
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtquickcontrols2
|
|
, qtwebchannel
|
|
, qtwebengine
|
|
, qtwebsockets
|
|
, baloo
|
|
, karchive
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, kfilemetadata
|
|
, ki18n
|
|
, kirigami-addons
|
|
, kitemmodels
|
|
, kquickcharts
|
|
, kwindowsystem
|
|
, qqc2-desktop-style
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "arianna";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
qtquickcontrols2
|
|
qtwebchannel
|
|
qtwebengine
|
|
qtwebsockets
|
|
baloo
|
|
karchive
|
|
kconfig
|
|
kcoreaddons
|
|
kdbusaddons
|
|
kfilemetadata
|
|
ki18n
|
|
kirigami-addons
|
|
kitemmodels
|
|
kquickcharts
|
|
kwindowsystem
|
|
qqc2-desktop-style
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An Epub Reader for Plasma and Plasma Mobile";
|
|
mainProgram = "arianna";
|
|
homepage = "https://invent.kde.org/graphics/arianna";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ Thra11 ];
|
|
};
|
|
}
|