nixpkgs/pkgs/applications/kde/arianna.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1015 B
Nix
Raw Normal View History

2023-04-23 13:04:38 +00:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
2023-08-24 10:59:41 +00:00
, qtbase
, qtdeclarative
, qtquickcontrols2
, qtwebchannel
, qtwebengine
, qtwebsockets
2023-04-23 13:04:38 +00:00
, baloo
2023-08-24 10:59:41 +00:00
, karchive
, kconfig
, kcoreaddons
, kdbusaddons
2023-04-23 13:04:38 +00:00
, kfilemetadata
2023-08-24 10:59:41 +00:00
, ki18n
2023-04-23 13:04:38 +00:00
, kirigami-addons
, kitemmodels
2023-04-23 13:04:38 +00:00
, kquickcharts
2023-08-24 10:59:41 +00:00
, kwindowsystem
2023-04-23 13:04:38 +00:00
, qqc2-desktop-style
}:
2023-08-24 10:59:41 +00:00
mkDerivation {
2023-04-23 13:04:38 +00:00
pname = "arianna";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
2023-08-24 10:59:41 +00:00
qtbase
qtdeclarative
qtquickcontrols2
qtwebchannel
qtwebengine
qtwebsockets
2023-04-23 13:04:38 +00:00
baloo
2023-08-24 10:59:41 +00:00
karchive
kconfig
kcoreaddons
kdbusaddons
2023-04-23 13:04:38 +00:00
kfilemetadata
2023-08-24 10:59:41 +00:00
ki18n
2023-04-23 13:04:38 +00:00
kirigami-addons
kitemmodels
2023-04-23 13:04:38 +00:00
kquickcharts
2023-08-24 10:59:41 +00:00
kwindowsystem
2023-04-23 13:04:38 +00:00
qqc2-desktop-style
];
meta = with lib; {
description = "An Epub Reader for Plasma and Plasma Mobile";
mainProgram = "arianna";
2023-04-23 13:04:38 +00:00
homepage = "https://invent.kde.org/graphics/arianna";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ Thra11 ];
};
}