mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
skrooge2: init at 2.4.0
This commit is contained in:
parent
b8e215fb50
commit
afa88f2dc2
2 changed files with 37 additions and 0 deletions
35
pkgs/applications/office/skrooge/2.nix
Normal file
35
pkgs/applications/office/skrooge/2.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ stdenv, fetchurl, cmake, ecm, makeQtWrapper, qtwebkit, qtscript, grantlee,
|
||||
kxmlgui, kwallet, kparts, kdoctools, kjobwidgets, kdesignerplugin,
|
||||
kiconthemes, knewstuff, sqlcipher, qca-qt5, kdelibs4support, kactivities,
|
||||
knotifyconfig, krunner, libofx }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "skrooge-${version}";
|
||||
version = "2.4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.kde.org/stable/skrooge/${name}.tar.xz";
|
||||
sha256 = "132d022337140f841f51420536c31dfe07c90fa3a38878279026825f5d2526fe";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ecm makeQtWrapper ];
|
||||
|
||||
buildInputs = [ qtwebkit qtscript grantlee kxmlgui kwallet kparts kdoctools
|
||||
kjobwidgets kdesignerplugin kiconthemes knewstuff sqlcipher qca-qt5
|
||||
kdelibs4support kactivities knotifyconfig krunner libofx
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
wrapQtProgram "$out/bin/skrooge"
|
||||
wrapQtProgram "$out/bin/skroogeconvert"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A personal finances manager, powered by KDE";
|
||||
license = with licenses; [ gpl3 ];
|
||||
maintainers = with maintainers; [ joko ];
|
||||
homepage = https://skrooge.org/;
|
||||
};
|
||||
}
|
|
@ -14714,6 +14714,8 @@ in
|
|||
themes = []; # extra themes, etc.
|
||||
};
|
||||
|
||||
skrooge2 = qt5.callPackage ../applications/office/skrooge/2.nix {};
|
||||
|
||||
slim = callPackage ../applications/display-managers/slim {
|
||||
libpng = libpng12;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue