ae587fcd42
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/skrooge/versions. These checks were done: - built on NixOS - ran ‘/nix/store/l83qij463yvk1nqxahdcm9amfnp7zdm8-skrooge-2.13.0/bin/skroogeconvert -h’ got 0 exit code - ran ‘/nix/store/l83qij463yvk1nqxahdcm9amfnp7zdm8-skrooge-2.13.0/bin/skroogeconvert --help’ got 0 exit code - found 2.13.0 with grep in /nix/store/l83qij463yvk1nqxahdcm9amfnp7zdm8-skrooge-2.13.0 - directory tree listing: https://gist.github.com/699ec87fffb73399c86ad11632ed9b17
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ mkDerivation, lib, fetchurl,
|
|
cmake, extra-cmake-modules, 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.13.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/skrooge/${name}.tar.xz";
|
|
sha256 = "1f1k0fkfhism1jyx3yxi8rdf1jrmp2vaphmz7fgh9hk18ndvss7d";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake extra-cmake-modules kdoctools shared-mime-info
|
|
];
|
|
|
|
buildInputs = [
|
|
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/;
|
|
};
|
|
}
|