forked from mirrors/nixpkgs
59d3d19f16
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0/bin/skroogeconvert -h` got 0 exit code - ran `/nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0/bin/skroogeconvert --help` got 0 exit code - ran `/nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0/bin/skroogeconvert -v` and found version 2.12.0 - ran `/nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0/bin/skroogeconvert --version` and found version 2.12.0 - ran `/nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0/bin/skroogeconvert -h` and found version 2.12.0 - ran `/nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0/bin/skroogeconvert --help` and found version 2.12.0 - found 2.12.0 with grep in /nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0 - found 2.12.0 in filename of file in /nix/store/yjdafzss769kl6jg9asxyalgy7a5xxz7-skrooge-2.12.0
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ mkDerivation, lib, fetchurl,
|
|
cmake, extra-cmake-modules, qtwebkit, 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.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.kde.org/stable/skrooge/${name}.tar.xz";
|
|
sha256 = "0f7jwl05y4gjwasjcbsx2rrva81abyf0hgdbkh7h3dl7nxz9h6g1";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake extra-cmake-modules kdoctools shared-mime-info
|
|
];
|
|
|
|
buildInputs = [
|
|
qtwebkit qtscript grantlee kxmlgui kwallet kparts
|
|
kjobwidgets kdesignerplugin kiconthemes knewstuff sqlcipher qca-qt5
|
|
kactivities karchive kguiaddons knotifyconfig krunner kwindowsystem libofx
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A personal finances manager, powered by KDE";
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = with maintainers; [ joko ];
|
|
homepage = https://skrooge.org/;
|
|
};
|
|
}
|