summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorIoannis Koutras <ioannis.koutras@gmail.com>2016-08-17 13:25:21 +0300
committerIoannis Koutras <ioannis.koutras@gmail.com>2016-08-18 11:41:43 +0300
commitafa88f2dc27dd0b8f96b5ab9317e21acacbc76fb (patch)
tree9ae757d18f69e5660b11ddb8f2b38817753e02d0 /pkgs/applications/office
parentb8e215fb50a9cc11e8156c3913a4c4f305d2fd2b (diff)
downloadnixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.tar
nixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.tar.gz
nixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.tar.bz2
nixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.tar.lz
nixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.tar.xz
nixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.tar.zst
nixlib-afa88f2dc27dd0b8f96b5ab9317e21acacbc76fb.zip
skrooge2: init at 2.4.0
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/skrooge/2.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/office/skrooge/2.nix b/pkgs/applications/office/skrooge/2.nix
new file mode 100644
index 000000000000..f9be34efd953
--- /dev/null
+++ b/pkgs/applications/office/skrooge/2.nix
@@ -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/;
+  };
+}