a1b8fe8c8f
Update to new upstream version. Had to re-introduce QtWebkit dependency because it is used in *.ui files.
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ mkDerivation, lib, fetchurl,
|
|
cmake, extra-cmake-modules, qtwebkit, qtwebengine, qtscript, grantlee,
|
|
kxmlgui, kwallet, kparts, kdoctools, kjobwidgets, kdesignerplugin,
|
|
kiconthemes, knewstuff, sqlcipher, qca-qt5, kactivities, karchive,
|
|
kguiaddons, knotifyconfig, krunner, kwindowsystem, libofx, shared-mime-info
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
name = "skrooge-${version}";
|
|
version = "2.16.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/skrooge/${name}.tar.xz";
|
|
sha256 = "0idvqbra8a71jb5kq9y5v377l7k3shf4z7w71apc3rjvb4l0jkhj";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake extra-cmake-modules kdoctools shared-mime-info
|
|
];
|
|
|
|
buildInputs = [
|
|
qtwebkit qtwebengine qtscript grantlee kxmlgui kwallet kparts
|
|
kjobwidgets kdesignerplugin kiconthemes knewstuff sqlcipher qca-qt5
|
|
kactivities karchive kguiaddons knotifyconfig krunner kwindowsystem libofx
|
|
];
|
|
|
|
# SKG_DESIGNER must be used to generate the needed library for QtDesigner.
|
|
# This is needed ONLY for developers. So NOT NEEDED for end user.
|
|
# Source: https://forum.kde.org/viewtopic.php?f=210&t=143375#p393675
|
|
cmakeFlags = [
|
|
"-DSKG_DESIGNER=OFF"
|
|
"-DSKG_WEBENGINE=ON"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A personal finances manager, powered by KDE";
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = with maintainers; [ joko ];
|
|
homepage = https://skrooge.org/;
|
|
};
|
|
}
|